-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
65 lines (65 loc) · 1.7 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/monorepo-tools",
"description": "Contao Monorepo Tools",
"license": "LGPL-3.0-or-later",
"type": "library",
"authors": [
{
"name": "Martin Auswöger",
"homepage": "https://au.si/"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-zlib": "*",
"composer/semver": "^3.2",
"phpspec/php-diff": "^1.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
"symfony/process": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"ausi/remote-git": "^0.2.5",
"contao/easy-coding-standard": "^6.12",
"contao/rector": "^1.2",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9.5"
},
"conflict": {
"composer/semver": "3.2.8"
},
"autoload": {
"psr-4": {
"Contao\\MonorepoTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contao\\MonorepoTools\\Tests\\": "tests/"
}
},
"bin": [
"bin/monorepo-tools"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"all": [
"@rector",
"@ecs",
"@unit-tests",
"@phpstan"
],
"ecs": "@php vendor/bin/ecs check --fix",
"phpstan": "@php vendor/bin/phpstan analyze",
"rector": "@php vendor/bin/rector",
"unit-tests": "@php vendor/bin/phpunit"
}
}