Browse code

Set PHP 8 as minimum requirement as we're using PHP Attributes for EventListeners

Benjamin Roth authored on06/08/2024 11:27:21
Showing1 changed files
... ...
@@ -11,7 +11,7 @@
11 11
     }
12 12
   ],
13 13
   "require":{
14
-    "php": "^7.4 || ^8.0",
14
+    "php": "^8.0",
15 15
     "contao/core-bundle": "^4.13 || ^5.0",
16 16
     "menatwork/contao-multicolumnwizard-bundle": "^3.5"
17 17
   },
Browse code

Add contao 5.x compatibility

Benjamin Roth authored on24/10/2023 14:49:13
Showing1 changed files
... ...
@@ -12,7 +12,7 @@
12 12
   ],
13 13
   "require":{
14 14
     "php": "^7.4 || ^8.0",
15
-    "contao/core-bundle": "^4.13 || 5.0",
15
+    "contao/core-bundle": "^4.13 || ^5.0",
16 16
     "menatwork/contao-multicolumnwizard-bundle": "^3.5"
17 17
   },
18 18
   "conflict": {
Browse code

Reimplement extended registration and personal data form handling

Benjamin Roth authored on22/03/2023 12:59:10
Showing1 changed files
... ...
@@ -12,7 +12,8 @@
12 12
   ],
13 13
   "require":{
14 14
     "php": "^7.4 || ^8.0",
15
-    "contao/core-bundle": "^4.13 || 5.0"
15
+    "contao/core-bundle": "^4.13 || 5.0",
16
+    "menatwork/contao-multicolumnwizard-bundle": "^3.5"
16 17
   },
17 18
   "conflict": {
18 19
     "contao/manager-plugin": "<2.0 || >=3.0"
Browse code

Update composer.json

Benjamin Roth authored on22/02/2023 21:28:59
Showing1 changed files
... ...
@@ -12,7 +12,7 @@
12 12
   ],
13 13
   "require":{
14 14
     "php": "^7.4 || ^8.0",
15
-    "contao/core-bundle": "^4.13"
15
+    "contao/core-bundle": "^4.13 || 5.0"
16 16
   },
17 17
   "conflict": {
18 18
     "contao/manager-plugin": "<2.0 || >=3.0"
Browse code

First iteration of revamped formilicious for Contao 4.13+

Benjamin Roth authored on20/01/2023 09:49:23
Showing1 changed files
... ...
@@ -1,28 +1,40 @@
1 1
 {
2
-  "name":"esalesmedia/contao-formilicious",
2
+  "name":"vonrotenberg/formilicious-bundle",
3 3
   "description":"Extends the Contao forms to easily create multi column forms.",
4 4
   "keywords":["contao", "form", "columns"],
5
-  "type":"contao-module",
5
+  "type":"contao-bundle",
6 6
   "license":"LGPL-3.0+",
7 7
   "authors":[
8 8
     {
9 9
       "name": "Benjamin Roth",
10
-      "homepage": "https://www.esales-media.de"
10
+      "homepage": "https://www.vonrotenberg.de"
11 11
     }
12 12
   ],
13 13
   "require":{
14
-    "php": ">=7.4",
15
-    "contao/core-bundle": "^4.7"
14
+    "php": "^7.4 || ^8.0",
15
+    "contao/core-bundle": "^4.13"
16 16
   },
17 17
   "conflict": {
18
-    "contao/core": "*",
19 18
     "contao/manager-plugin": "<2.0 || >=3.0"
20 19
   },
21
-  "extra":{
22
-    "contao": {
23
-      "sources":{
24
-        "": "system/modules/eSM_formilicious"
25
-      }
20
+  "autoload": {
21
+    "psr-4": {
22
+      "vonRotenberg\\FormiliciousBundle\\": "src/"
23
+    }
24
+  },
25
+  "config": {
26
+    "allow-plugins": {
27
+      "contao-components/installer": true,
28
+      "contao/manager-plugin": true
26 29
     }
30
+  },
31
+  "repositories": {
32
+    "esalesmedia": {
33
+      "type": "composer",
34
+      "url": "https://satis.esales-media.de"
35
+    }
36
+  },
37
+  "extra":{
38
+    "contao-manager-plugin": "vonRotenberg\\FormiliciousBundle\\ContaoManager\\Plugin"
27 39
   }
28
-}
29 40
\ No newline at end of file
41
+}
Browse code

Adjust PHP compatibility

Benjamin Roth authored on28/11/2022 14:33:41
Showing1 changed files
... ...
@@ -11,7 +11,7 @@
11 11
     }
12 12
   ],
13 13
   "require":{
14
-    "php": "^7.1",
14
+    "php": ">=7.4",
15 15
     "contao/core-bundle": "^4.7"
16 16
   },
17 17
   "conflict": {
Browse code

Make it compatible with latest Contao versions 4.7 and 4.8

Benjamin Roth authored on07/10/2019 12:16:55
Showing1 changed files
... ...
@@ -11,8 +11,8 @@
11 11
     }
12 12
   ],
13 13
   "require":{
14
-    "php": "^5.6 || ^7.0",
15
-    "contao/core-bundle": "^4.4"
14
+    "php": "^7.1",
15
+    "contao/core-bundle": "^4.7"
16 16
   },
17 17
   "conflict": {
18 18
     "contao/core": "*",
Browse code

Add composer.json

Benjamin Roth authored on22/02/2019 14:50:22
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,28 @@
1
+{
2
+  "name":"esalesmedia/contao-formilicious",
3
+  "description":"Extends the Contao forms to easily create multi column forms.",
4
+  "keywords":["contao", "form", "columns"],
5
+  "type":"contao-module",
6
+  "license":"LGPL-3.0+",
7
+  "authors":[
8
+    {
9
+      "name": "Benjamin Roth",
10
+      "homepage": "https://www.esales-media.de"
11
+    }
12
+  ],
13
+  "require":{
14
+    "php": "^5.6 || ^7.0",
15
+    "contao/core-bundle": "^4.4"
16
+  },
17
+  "conflict": {
18
+    "contao/core": "*",
19
+    "contao/manager-plugin": "<2.0 || >=3.0"
20
+  },
21
+  "extra":{
22
+    "contao": {
23
+      "sources":{
24
+        "": "system/modules/eSM_formilicious"
25
+      }
26
+    }
27
+  }
28
+}
0 29
\ No newline at end of file