-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
72 lines (72 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
66
67
68
69
70
71
72
{
"name": "chaos-php/chaos-monkey-symfony-bundle",
"type": "library",
"description": "Chaos Monkey for Symfony applications",
"keywords": [
"php",
"symfony",
"chaos-monkey",
"chaos-engineering",
"chaos-tests",
"quality-assurance"
],
"license": "MIT",
"authors": [
{
"name": "Arkadiusz Kondas",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"chaos-php/chaos-monkey": "^1.1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.58",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^10.5",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/runtime": "^6.4 || ^7.0",
"symfony/stopwatch": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"Chaos\\Monkey\\Symfony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Chaos\\Monkey\\Symfony\\Tests\\": "tests/"
}
},
"scripts": {
"ci": [
"composer validate",
"@check-cs",
"tests/Symfony/console ca:cl -e test",
"@phpstan",
"@phpunit"
],
"check-cs": [
"php-cs-fixer fix --dry-run --diff"
],
"fix-cs": [
"php-cs-fixer fix"
],
"phpunit": [
"phpunit"
],
"phpstan": [
"phpstan analyse -c phpstan.neon"
]
},
"config": {
"allow-plugins": {
"symfony/runtime": true
},
"sort-packages": true
}
}