Browse code

Update composer.json

Benjamin Roth authored on22/02/2023 22:07:07
Showing1 changed files
... ...
@@ -15,7 +15,7 @@
15 15
     },
16 16
     "require": {
17 17
         "php": "^7.4 || ^8.0",
18
-        "contao/core-bundle": "^4.13 || 5.0",
18
+        "contao/core-bundle": "^4.13 || ^5.0",
19 19
         "vonrotenberg/jbox-bundle": "^1.0"
20 20
     },
21 21
     "require-dev": {
Browse code

Update composer.json

Benjamin Roth authored on22/02/2023 22:03:37
Showing1 changed files
... ...
@@ -16,7 +16,7 @@
16 16
     "require": {
17 17
         "php": "^7.4 || ^8.0",
18 18
         "contao/core-bundle": "^4.13 || 5.0",
19
-        "vonrotenberg/jbox-bundle": "^1.0.0"
19
+        "vonrotenberg/jbox-bundle": "^1.0"
20 20
     },
21 21
     "require-dev": {
22 22
         "bamarni/composer-bin-plugin": "^1.5",
Browse code

Update composer.json

Benjamin Roth authored on22/02/2023 21:34:26
Showing1 changed files
... ...
@@ -15,7 +15,7 @@
15 15
     },
16 16
     "require": {
17 17
         "php": "^7.4 || ^8.0",
18
-        "contao/core-bundle": "^4.13",
18
+        "contao/core-bundle": "^4.13 || 5.0",
19 19
         "vonrotenberg/jbox-bundle": "^1.0.0"
20 20
     },
21 21
     "require-dev": {
Browse code

Adjust version constraint of jbox bundle

Benjamin Roth authored on12/01/2023 10:12:09
Showing1 changed files
... ...
@@ -16,7 +16,7 @@
16 16
     "require": {
17 17
         "php": "^7.4 || ^8.0",
18 18
         "contao/core-bundle": "^4.13",
19
-        "vonrotenberg/jbox-bundle": "dev-master"
19
+        "vonrotenberg/jbox-bundle": "^1.0.0"
20 20
     },
21 21
     "require-dev": {
22 22
         "bamarni/composer-bin-plugin": "^1.5",
Browse code

Add jbox bundle as dependency

Benjamin Roth authored on12/01/2023 09:47:55
Showing1 changed files
... ...
@@ -15,7 +15,8 @@
15 15
     },
16 16
     "require": {
17 17
         "php": "^7.4 || ^8.0",
18
-        "contao/core-bundle": "^4.13"
18
+        "contao/core-bundle": "^4.13",
19
+        "vonrotenberg/jbox-bundle": "dev-master"
19 20
     },
20 21
     "require-dev": {
21 22
         "bamarni/composer-bin-plugin": "^1.5",
... ...
@@ -43,6 +44,12 @@
43 44
             "contao/manager-plugin": true
44 45
         }
45 46
     },
47
+    "repositories": {
48
+        "esalesmedia": {
49
+            "type": "composer",
50
+            "url": "https://satis.esales-media.de"
51
+        }
52
+    },
46 53
     "extra": {
47 54
         "bamarni-bin": {
48 55
             "bin-links": false,
Browse code

Fix manager plugin namespace in composer.json

Benjamin Roth authored on09/01/2023 22:38:11
Showing1 changed files
... ...
@@ -48,7 +48,7 @@
48 48
             "bin-links": false,
49 49
             "target-directory": "tools"
50 50
         },
51
-        "contao-manager-plugin": "Contao\\SkeletonBundle\\ContaoManager\\Plugin"
51
+        "contao-manager-plugin": "vonRotenberg\\ModalBundle\\ContaoManager\\Plugin"
52 52
     },
53 53
     "scripts": {
54 54
         "all": [
Browse code

Initial commit

Benjamin Roth authored on09/01/2023 22:28:04
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,63 @@
1
+{
2
+    "name": "vonrotenberg/modal-bundle",
3
+    "description": "Modal windows for contao bundle",
4
+    "license": "LGPL-3.0-or-later",
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"
19
+    },
20
+    "require-dev": {
21
+        "bamarni/composer-bin-plugin": "^1.5",
22
+        "contao/manager-plugin": "^2.0",
23
+        "phpunit/phpunit": "^9.5",
24
+        "symfony/phpunit-bridge": "^6.1"
25
+    },
26
+    "conflict": {
27
+        "contao/manager-plugin": "<2.0 || >=3.0"
28
+    },
29
+    "autoload": {
30
+        "psr-4": {
31
+            "vonRotenberg\\ModalBundle\\": "src/"
32
+        }
33
+    },
34
+    "autoload-dev": {
35
+        "psr-4": {
36
+            "vonRotenberg\\ModalBundle\\Tests\\": "tests/"
37
+        }
38
+    },
39
+    "config": {
40
+        "allow-plugins": {
41
+            "bamarni/composer-bin-plugin": true,
42
+            "contao-components/installer": true,
43
+            "contao/manager-plugin": true
44
+        }
45
+    },
46
+    "extra": {
47
+        "bamarni-bin": {
48
+            "bin-links": false,
49
+            "target-directory": "tools"
50
+        },
51
+        "contao-manager-plugin": "Contao\\SkeletonBundle\\ContaoManager\\Plugin"
52
+    },
53
+    "scripts": {
54
+        "all": [
55
+            "@unit-tests",
56
+            "@ecs",
57
+            "@phpstan"
58
+        ],
59
+        "ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi",
60
+        "phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi",
61
+        "unit-tests": "@php vendor/bin/phpunit --colors=always"
62
+    }
63
+}