-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
71 lines (71 loc) · 2.02 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "contao/skeleton-bundle",
"description": "Skeleton for custom Contao 4 bundles",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"authors": [
{
"name": "Leo Feyer",
"homepage": "https://github.com/leofeyer"
},
{
"name": "Contao Community",
"homepage": "https://contao.org/contributors"
}
],
"homepage": "https://contao.org",
"support": {
"issues": "https://github.com/contao/skeleton-bundle/issues",
"source": "https://github.com/contao/skeleton-bundle"
},
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.13",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/http-kernel": "^5.4"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.5",
"contao/manager-plugin": "^2.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^6.1"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Contao\\SkeletonBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contao\\SkeletonBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"contao-components/installer": true,
"contao/manager-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "tools"
},
"contao-manager-plugin": "Contao\\SkeletonBundle\\ContaoManager\\Plugin"
},
"scripts": {
"all": [
"@unit-tests",
"@ecs",
"@phpstan"
],
"ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi",
"phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi",
"unit-tests": "@php vendor/bin/phpunit --colors=always"
}
}