-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.25 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-cody",
"description": "PHP Cody for InspectIO",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Alexander Miertsch",
"email": "contact@prooph.de",
"homepage": "http://www.prooph.de"
},
{
"name": "Sandro Keil",
"email": "contact@prooph.de",
"homepage": "http://prooph-software.com/"
}
],
"support": {
"issues": "https://github.com/event-engine/php-inspectio-cody/issues",
"source": "https://github.com/event-engine/php-inspectio-cody"
},
"autoload": {
"psr-4": {
"EventEngine\\InspectioCody\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EventEngineTest\\InspectioCody\\": "tests/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"christoph-kluge/reactphp-http-cors-middleware": "^2.0.0",
"event-engine/php-inspectio-graph-cody": "^0.1.0",
"fig/http-message-util": "^1.1",
"open-code-modeling/php-code-generator-transformator": "^0.1.0",
"psr/http-message": "^1.0",
"react/http": "^1.1",
"seregazhuk/php-watcher": "^0.5.2 || dev-master"
},
"require-dev": {
"jangregor/phpstan-prophecy": "^0.8.1",
"phpspec/prophecy-phpunit": "^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"
},
"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"
]
}
}