-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
65 lines (65 loc) · 1.75 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
{
"name": "contao/maker-bundle",
"type": "contao-bundle",
"description": "The Contao Maker Bundle helps you create empty content elements, modules, hooks and more.",
"keywords": [
"contao",
"generator",
"code generator",
"scaffolding",
"scaffold"
],
"license": "LGPL-3.0-or-later",
"require": {
"php": ">=7.4",
"ext-dom": "*",
"contao/core-bundle": "^4.9",
"symfony/maker-bundle": "^1.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"contao/manager-plugin": "^2.6.2",
"phpunit/phpunit": "^8.5",
"symfony/phpunit-bridge": "^5.2"
},
"config": {
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "tools"
},
"contao-manager-plugin": "Contao\\MakerBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"Contao\\MakerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contao\\MakerBundle\\Tests\\": "tests/"
}
},
"scripts": {
"all": [
"@unit-tests",
"@cs-fixer",
"@phpstan",
"@psalm"
],
"cs-fixer": [
"tools/ecs/vendor/bin/ecs check src tests --config tools/ecs/vendor/contao/easy-coding-standard/config/default.php --fix --ansi"
],
"phpstan": [
"tools/phpstan/vendor/bin/phpstan analyze src tests --level=max --memory-limit=1G --ansi"
],
"psalm": [
"tools/psalm/vendor/bin/psalm --no-suggestions"
],
"unit-tests": [
"vendor/bin/phpunit --colors=always"
]
}
}