... | ... |
@@ -22,7 +22,7 @@ |
22 | 22 |
"symfony/http-kernel": "^5.4", |
23 | 23 |
"vonrotenberg/htmx-bundle": "^1.0", |
24 | 24 |
"menatwork/contao-multicolumnwizard-bundle": "^3.6", |
25 |
- "terminal42/notification_center": "^1.7" |
|
25 |
+ "terminal42/notification_center": "^1.6" |
|
26 | 26 |
}, |
27 | 27 |
"require-dev": { |
28 | 28 |
"bamarni/composer-bin-plugin": "^1.5", |
... | ... |
@@ -21,7 +21,8 @@ |
21 | 21 |
"symfony/dependency-injection": "^5.4", |
22 | 22 |
"symfony/http-kernel": "^5.4", |
23 | 23 |
"vonrotenberg/htmx-bundle": "^1.0", |
24 |
- "menatwork/contao-multicolumnwizard-bundle": "^3.6" |
|
24 |
+ "menatwork/contao-multicolumnwizard-bundle": "^3.6", |
|
25 |
+ "terminal42/notification_center": "^1.7" |
|
25 | 26 |
}, |
26 | 27 |
"require-dev": { |
27 | 28 |
"bamarni/composer-bin-plugin": "^1.5", |
... | ... |
@@ -46,7 +47,8 @@ |
46 | 47 |
"allow-plugins": { |
47 | 48 |
"bamarni/composer-bin-plugin": true, |
48 | 49 |
"contao-components/installer": true, |
49 |
- "contao/manager-plugin": true |
|
50 |
+ "contao/manager-plugin": true, |
|
51 |
+ "contao-community-alliance/composer-plugin": true |
|
50 | 52 |
} |
51 | 53 |
}, |
52 | 54 |
"extra": { |
... | ... |
@@ -20,7 +20,8 @@ |
20 | 20 |
"symfony/config": "^5.4", |
21 | 21 |
"symfony/dependency-injection": "^5.4", |
22 | 22 |
"symfony/http-kernel": "^5.4", |
23 |
- "vonrotenberg/htmx-bundle": "^1.0" |
|
23 |
+ "vonrotenberg/htmx-bundle": "^1.0", |
|
24 |
+ "menatwork/contao-multicolumnwizard-bundle": "^3.6" |
|
24 | 25 |
}, |
25 | 26 |
"require-dev": { |
26 | 27 |
"bamarni/composer-bin-plugin": "^1.5", |
... | ... |
@@ -18,7 +18,8 @@ |
18 | 18 |
"contao/core-bundle": "^4.13", |
19 | 19 |
"symfony/config": "^5.4", |
20 | 20 |
"symfony/dependency-injection": "^5.4", |
21 |
- "symfony/http-kernel": "^5.4" |
|
21 |
+ "symfony/http-kernel": "^5.4", |
|
22 |
+ "vonrotenberg/htmx-bundle": "^1.0" |
|
22 | 23 |
}, |
23 | 24 |
"require-dev": { |
24 | 25 |
"bamarni/composer-bin-plugin": "^1.5", |
... | ... |
@@ -62,5 +63,11 @@ |
62 | 63 |
"ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi", |
63 | 64 |
"phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi", |
64 | 65 |
"unit-tests": "@php vendor/bin/phpunit --colors=always" |
66 |
+ }, |
|
67 |
+ "repositories": { |
|
68 |
+ "vonrotenberg": { |
|
69 |
+ "type": "composer", |
|
70 |
+ "url": "https://satis.esales-media.de" |
|
71 |
+ } |
|
65 | 72 |
} |
66 | 73 |
} |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,66 @@ |
1 |
+{ |
|
2 |
+ "name": "vonrotenberg/contao-weinanlieferung-bundle", |
|
3 |
+ "description": "Contao bundle für Weinanlieferung-Buchungstool.", |
|
4 |
+ "license": "commercial", |
|
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 |
+ "symfony/config": "^5.4", |
|
20 |
+ "symfony/dependency-injection": "^5.4", |
|
21 |
+ "symfony/http-kernel": "^5.4" |
|
22 |
+ }, |
|
23 |
+ "require-dev": { |
|
24 |
+ "bamarni/composer-bin-plugin": "^1.5", |
|
25 |
+ "contao/manager-plugin": "^2.0", |
|
26 |
+ "phpunit/phpunit": "^9.5", |
|
27 |
+ "symfony/phpunit-bridge": "^6.1" |
|
28 |
+ }, |
|
29 |
+ "conflict": { |
|
30 |
+ "contao/manager-plugin": "<2.0 || >=3.0" |
|
31 |
+ }, |
|
32 |
+ "autoload": { |
|
33 |
+ "psr-4": { |
|
34 |
+ "vonRotenberg\\WeinanlieferungBundle\\": "src/" |
|
35 |
+ } |
|
36 |
+ }, |
|
37 |
+ "autoload-dev": { |
|
38 |
+ "psr-4": { |
|
39 |
+ "vonRotenberg\\WeinanlieferungBundle\\Tests\\": "tests/" |
|
40 |
+ } |
|
41 |
+ }, |
|
42 |
+ "config": { |
|
43 |
+ "allow-plugins": { |
|
44 |
+ "bamarni/composer-bin-plugin": true, |
|
45 |
+ "contao-components/installer": true, |
|
46 |
+ "contao/manager-plugin": true |
|
47 |
+ } |
|
48 |
+ }, |
|
49 |
+ "extra": { |
|
50 |
+ "bamarni-bin": { |
|
51 |
+ "bin-links": false, |
|
52 |
+ "target-directory": "tools" |
|
53 |
+ }, |
|
54 |
+ "contao-manager-plugin": "vonRotenberg\\WeinanlieferungBundle\\ContaoManager\\Plugin" |
|
55 |
+ }, |
|
56 |
+ "scripts": { |
|
57 |
+ "all": [ |
|
58 |
+ "@unit-tests", |
|
59 |
+ "@ecs", |
|
60 |
+ "@phpstan" |
|
61 |
+ ], |
|
62 |
+ "ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi", |
|
63 |
+ "phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi", |
|
64 |
+ "unit-tests": "@php vendor/bin/phpunit --colors=always" |
|
65 |
+ } |
|
66 |
+} |