Browse code

Initial commit

Benjamin Roth authored on18/03/2025 13:06:28
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,83 @@
1
+{
2
+    "name": "vonrotenberg/aldegott-sw-nl-bundle",
3
+    "description": "vonRotenberg Aldegott Shopware NL-Export 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": "^4.13 || ^5.3",
23
+        "symfony/config": "^5.4 || ^6.4",
24
+        "symfony/dependency-injection": "^5.4 || ^6.4",
25
+        "symfony/http-kernel": "^5.4 || ^6.4",
26
+        "symfony/serializer": "^5.4 || ^6.4",
27
+        "symfony/property-access": "^5.4 || ^6.4",
28
+        "vonrotenberg/shopware-api-bundle": "dev-master"
29
+    },
30
+    "require-dev": {
31
+        "bamarni/composer-bin-plugin": "^1.5",
32
+        "contao/manager-plugin": "^2.0",
33
+        "phpunit/phpunit": "^9.5",
34
+        "symfony/phpunit-bridge": "^6.1"
35
+    },
36
+    "conflict": {
37
+        "contao/manager-plugin": "<2.0 || >=3.0"
38
+    },
39
+    "autoload": {
40
+        "psr-4": {
41
+            "vonRotenberg\\AldegottSwNlBundle\\": "src/"
42
+        }
43
+    },
44
+    "autoload-dev": {
45
+        "psr-4": {
46
+            "vonRotenberg\\AldegottSwNlBundle\\Tests\\": "tests/"
47
+        }
48
+    },
49
+    "config": {
50
+        "allow-plugins": {
51
+            "bamarni/composer-bin-plugin": true,
52
+            "contao-components/installer": true,
53
+            "contao/manager-plugin": true
54
+        }
55
+    },
56
+    "extra": {
57
+        "bamarni-bin": {
58
+            "bin-links": false,
59
+            "target-directory": "tools"
60
+        },
61
+        "contao-manager-plugin": "vonRotenberg\\AldegottSwNlBundle\\ContaoManager\\Plugin"
62
+    },
63
+    "scripts": {
64
+        "all": [
65
+            "@unit-tests",
66
+            "@ecs",
67
+            "@phpstan"
68
+        ],
69
+        "ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi",
70
+        "phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi",
71
+        "unit-tests": "@php vendor/bin/phpunit --colors=always"
72
+    },
73
+    "repositories": {
74
+        "shopware-repo": {
75
+            "type": "path",
76
+            "url": "C:\\Work\\PhpstormProjects\\vonRotenberg\\contao-shopware-api-bundle"
77
+        },
78
+        "vonrotenberg": {
79
+            "type": "composer",
80
+            "url": "https://satis.esales-media.de"
81
+        }
82
+    }
83
+}