Browse code

Implement ajax controller for geo data retrieval

Benjamin Roth authored on02/02/2023 23:52:47
Showing1 changed files
... ...
@@ -20,6 +20,9 @@
20 20
     "symfony/http-client": "^5.4",
21 21
     "symfony/serializer": "^5.4"
22 22
   },
23
+  "require-dev": {
24
+    "contao/manager-plugin": "^2.0"
25
+  },
23 26
   "conflict": {
24 27
     "contao/manager-plugin": "<2.0 || >=3.0"
25 28
   },
Browse code

First iteration of filterable joblist

Benjamin Roth authored on01/02/2023 22:36:09
Showing1 changed files
... ...
@@ -17,7 +17,8 @@
17 17
   "require":{
18 18
     "php": "^7.4 || ^8.0",
19 19
     "contao/core-bundle": "^4.13",
20
-    "symfony/http-client": "^5.4"
20
+    "symfony/http-client": "^5.4",
21
+    "symfony/serializer": "^5.4"
21 22
   },
22 23
   "conflict": {
23 24
     "contao/manager-plugin": "<2.0 || >=3.0"
Browse code

Update dependencies

Benjamin Roth authored on30/01/2023 21:08:35
Showing1 changed files
... ...
@@ -16,7 +16,8 @@
16 16
   ],
17 17
   "require":{
18 18
     "php": "^7.4 || ^8.0",
19
-    "contao/core-bundle": "^4.13"
19
+    "contao/core-bundle": "^4.13",
20
+    "symfony/http-client": "^5.4"
20 21
   },
21 22
   "conflict": {
22 23
     "contao/manager-plugin": "<2.0 || >=3.0"
Browse code

Initial commit

Benjamin Roth authored on30/01/2023 20:47:41
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,38 @@
1
+{
2
+  "name":"vossmedien/alox-bundle",
3
+  "description":"Job ads listing bundle for Alox utilizing Zvoove API",
4
+  "keywords":["contao", "alox", "zvoove","api"],
5
+  "type":"contao-bundle",
6
+  "license":"commercial",
7
+  "authors":[
8
+    {
9
+      "name": "Benjamin Roth",
10
+      "homepage": "https://www.vonrotenberg.de"
11
+    },
12
+    {
13
+      "name": "Christian Voss",
14
+      "homepage": "https://www.vossmedien.de"
15
+    }
16
+  ],
17
+  "require":{
18
+    "php": "^7.4 || ^8.0",
19
+    "contao/core-bundle": "^4.13"
20
+  },
21
+  "conflict": {
22
+    "contao/manager-plugin": "<2.0 || >=3.0"
23
+  },
24
+  "autoload": {
25
+    "psr-4": {
26
+      "vossmedien\\AloxBundle\\": "src/"
27
+    }
28
+  },
29
+  "config": {
30
+    "allow-plugins": {
31
+      "contao-components/installer": true,
32
+      "contao/manager-plugin": true
33
+    }
34
+  },
35
+  "extra":{
36
+    "contao-manager-plugin": "vossmedien\\AloxBundle\\ContaoManager\\Plugin"
37
+  }
38
+}