-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.21 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
73
74
75
76
77
78
79
{
"name": "event-engine/php-inspectio-graph-cody",
"description": "PHP Graph Cody for InspectIO",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]",
"homepage": "http://www.prooph.de"
},
{
"name": "Sandro Keil",
"email": "[email protected]",
"homepage": "http://prooph-software.com/"
}
],
"support": {
"issues": "https://github.com/event-engine/php-inspectio-graph-cody/issues",
"source": "https://github.com/event-engine/php-inspectio-graph-cody"
},
"autoload": {
"psr-4": {
"EventEngine\\InspectioGraphCody\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EventEngineTest\\InspectioGraphCody\\": "tests/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"event-engine/php-inspectio-graph": "^0.4.0",
"ext-json": "*"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0",
"open-code-modeling/php-code-generator": "^0.2.0",
"phpstan/phpstan": "^0.12.33",
"phpstan/phpstan-strict-rules": "^0.12.4",
"phpunit/phpunit": "^9.2.6",
"prooph/php-cs-fixer-config": "^0.5.0",
"roave/security-advisories": "dev-latest"
},
"suggest": {
"open-code-modeling/php-filter": "For pre-configured filters for proper class / method / property names etc."
},
"conflict": {
"open-code-modeling/php-code-generator": "^0.1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check": [
"@cs",
"@test",
"@analyse"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "vendor/bin/phpunit",
"analyse": "php vendor/bin/phpstan.phar analyse --no-interaction"
},
"config": {
"sort-packages": true,
"platform": {
}
},
"archive": {
"exclude": [
".coveralls.yml",
".travis.yml",
"build",
"phpunit.xml*",
"tests"
]
}
}