Browse code

Adjust some project configs and presets

Benjamin Roth authored on26/11/2018 22:15:36
Showing1 changed files
... ...
@@ -10,7 +10,7 @@
10 10
         }
11 11
     ],
12 12
     "require": {
13
-        "php": ">=7.1",
13
+        "php": "^7.1",
14 14
         "contao/core-bundle": "^4.6"
15 15
     },
16 16
     "conflict": {
Browse code

Initial Commit

Benjamin Roth authored on26/11/2018 15:55:30
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,41 @@
1
+{
2
+    "name": "esalesmedia/contao-singlereisen",
3
+    "type": "contao-bundle",
4
+    "description": "Adds the singlereisen business logig to Contao",
5
+    "license": "proprietary",
6
+    "authors": [
7
+        {
8
+            "name": "Benjamin Roth",
9
+            "homepage": "https://www.esales-media.de"
10
+        }
11
+    ],
12
+    "require": {
13
+        "php": ">=7.1",
14
+        "contao/core-bundle": "^4.6"
15
+    },
16
+    "conflict": {
17
+        "contao/core": "*",
18
+        "contao/manager-plugin": "<2.0 || >=3.0"
19
+    },
20
+    "require-dev": {
21
+        "contao/manager-plugin": "^2.0",
22
+        "friendsofphp/php-cs-fixer": "^2.6",
23
+        "php-http/guzzle6-adapter": "^1.1"
24
+    },
25
+    "extra": {
26
+        "contao-manager-plugin": "EsalesMedia\\SinglereisenBundle\\ContaoManager\\Plugin"
27
+    },
28
+    "autoload": {
29
+        "psr-4": {
30
+            "EsalesMedia\\SinglereisenBundle\\": "src/"
31
+        }
32
+    },
33
+    "autoload-dev": {
34
+        "psr-4": {
35
+            "EsalesMedia\\SinglereisenBundle\\Tests\\": "tests/"
36
+        }
37
+    },
38
+    "support": {
39
+        "issues": "https://www.esales-media.de"
40
+    }
41
+}