Browse code

Initial commit

Benjamin Roth authored on01/06/2023 13:12:27
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,45 @@
1
+{
2
+  "name":"vossmedien/dacore-bundle",
3
+  "description":"Job application bundle for Dacore utilizing Softgarden API",
4
+  "keywords":["contao", "dacore", "softgarden","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
+    "symfony/http-client": "^5.4",
21
+    "symfony/serializer": "^5.4",
22
+    "codefog/contao-haste": "^4.25"
23
+  },
24
+  "require-dev": {
25
+    "contao/manager-plugin": "^2.0"
26
+  },
27
+  "conflict": {
28
+    "contao/manager-plugin": "<2.0 || >=3.0"
29
+  },
30
+  "autoload": {
31
+    "psr-4": {
32
+      "vossmedien\\DacoreBundle\\": "src/"
33
+    }
34
+  },
35
+  "config": {
36
+    "allow-plugins": {
37
+      "contao-components/installer": true,
38
+      "contao/manager-plugin": true,
39
+      "contao-community-alliance/composer-plugin": true
40
+    }
41
+  },
42
+  "extra":{
43
+    "contao-manager-plugin": "vossmedien\\DacoreBundle\\ContaoManager\\Plugin"
44
+  }
45
+}