Browse code

Remove redundant dependencies

Benjamin Roth authored on24/04/2025 10:28:26
Showing1 changed files
... ...
@@ -19,10 +19,7 @@
19 19
     },
20 20
     "require": {
21 21
         "php": "^8.0",
22
-        "contao/core-bundle": "^5.3",
23
-        "symfony/config": "^6.4",
24
-        "symfony/dependency-injection": "^6.4",
25
-        "symfony/http-kernel": "^6.4"
22
+        "contao/core-bundle": "^5.3"
26 23
     },
27 24
     "require-dev": {
28 25
         "bamarni/composer-bin-plugin": "^1.5",
Browse code

Base setup

Benjamin Roth authored on08/10/2024 23:07:44
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,70 @@
1
+{
2
+    "name": "vonrotenberg/vrcoretools-bundle",
3
+    "description": "vonRotenberg Coretools Bundle",
4
+    "license": "proprietary",
5
+    "type": "contao-bundle",
6
+    "authors": [
7
+        {
8
+            "name": "Benjamin Roth",
9
+            "homepage": "https://www.vonrotenberg.de"
10
+        },
11
+        {
12
+            "name": "vonRotenberg",
13
+            "homepage": "https://www.vonrotenberg.de"
14
+        }
15
+    ],
16
+    "homepage": "https://www.vonrotenberg.de",
17
+    "support": {
18
+        "issues": "https://www.vonrotenberg.de"
19
+    },
20
+    "require": {
21
+        "php": "^8.0",
22
+        "contao/core-bundle": "^5.3",
23
+        "symfony/config": "^6.4",
24
+        "symfony/dependency-injection": "^6.4",
25
+        "symfony/http-kernel": "^6.4"
26
+    },
27
+    "require-dev": {
28
+        "bamarni/composer-bin-plugin": "^1.5",
29
+        "contao/manager-plugin": "^2.0",
30
+        "phpunit/phpunit": "^9.5",
31
+        "symfony/phpunit-bridge": "^6.1"
32
+    },
33
+    "conflict": {
34
+        "contao/manager-plugin": "<2.0 || >=3.0"
35
+    },
36
+    "autoload": {
37
+        "psr-4": {
38
+            "vonRotenberg\\CoretoolsBundle\\": "src/"
39
+        }
40
+    },
41
+    "autoload-dev": {
42
+        "psr-4": {
43
+            "vonRotenberg\\CoretoolsBundle\\Tests\\": "tests/"
44
+        }
45
+    },
46
+    "config": {
47
+        "allow-plugins": {
48
+            "bamarni/composer-bin-plugin": true,
49
+            "contao-components/installer": true,
50
+            "contao/manager-plugin": true
51
+        }
52
+    },
53
+    "extra": {
54
+        "bamarni-bin": {
55
+            "bin-links": false,
56
+            "target-directory": "tools"
57
+        },
58
+        "contao-manager-plugin": "vonRotenberg\\CoretoolsBundle\\ContaoManager\\Plugin"
59
+    },
60
+    "scripts": {
61
+        "all": [
62
+            "@unit-tests",
63
+            "@ecs",
64
+            "@phpstan"
65
+        ],
66
+        "ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi",
67
+        "phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi",
68
+        "unit-tests": "@php vendor/bin/phpunit --colors=always"
69
+    }
70
+}