Browse code

Fix typo in composer name

Benjamin Roth authored on07/08/2023 22:10:49
Showing1 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 {
2
-    "name": "vonrotenberg/piccnic-bundle",
2
+    "name": "vonrotenberg/picnic-bundle",
3 3
     "description": "Picnic CSS framework for contao",
4 4
     "license": "MIT License",
5 5
     "type": "contao-bundle",
Browse code

Initial commit

Benjamin Roth authored on07/08/2023 22:08:40
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,40 @@
1
+{
2
+    "name": "vonrotenberg/piccnic-bundle",
3
+    "description": "Picnic CSS framework for contao",
4
+    "license": "MIT License",
5
+    "type": "contao-bundle",
6
+    "authors": [
7
+        {
8
+            "name": "Benjamin Roth",
9
+            "homepage": "https://www.vonrotenberg.de"
10
+        }
11
+    ],
12
+    "homepage": "https://www.vonrotenberg.de",
13
+    "support": {
14
+        "issues": "https://www.vonrotenberg.de"
15
+    },
16
+    "require": {
17
+        "php": "^7.4 || ^8.0",
18
+        "contao/core-bundle": "^4.13 || ^5.0"
19
+    },
20
+    "require-dev": {
21
+        "contao/manager-plugin": "^2.0"
22
+    },
23
+    "conflict": {
24
+        "contao/manager-plugin": "<2.0 || >=3.0"
25
+    },
26
+    "autoload": {
27
+        "psr-4": {
28
+            "vonRotenberg\\PicnicBundle\\": "src/"
29
+        }
30
+    },
31
+    "config": {
32
+        "allow-plugins": {
33
+            "contao-components/installer": true,
34
+            "contao/manager-plugin": true
35
+        }
36
+    },
37
+    "extra": {
38
+        "contao-manager-plugin": "vonRotenberg\\PicnicBundle\\ContaoManager\\Plugin"
39
+    }
40
+}