-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
92 lines (92 loc) · 2.69 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "event-engine/php-code-generator-cody",
"description": "PHP Code Generator for Event Engine powered by Cody",
"license": "MIT",
"type": "project",
"keywords": [
"php",
"code-generator",
"code-generation",
"ast-php",
"ast",
"abstract-syntax-tree",
"event-engine"
],
"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-code-generator-cody/issues",
"source": "https://github.com/event-engine/php-code-generator-cody"
},
"autoload": {
"psr-4": {
"EventEngine\\CodeGenerator\\Cody\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EventEngineTest\\CodeGenerator\\Cody\\": "tests/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"event-engine/php-code-generator-event-engine-ast": "master",
"event-engine/php-inspectio-cody": "dev-master",
"event-engine/php-inspectio-graph-cody": "dev-master",
"fig/http-message-util": "^1.1",
"laminas/laminas-filter": "^2.9",
"nikic/php-parser": "^v4.10.3",
"open-code-modeling/json-schema-to-php-ast": "^0.5.3",
"open-code-modeling/php-code-ast": "^0.12.2",
"open-code-modeling/php-code-generator-transformator": "^0.1.0",
"open-code-modeling/php-filter": "^0.1.3",
"psr/http-message": "^1.0"
},
"require-dev": {
"league/flysystem": "^2.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12.33",
"phpstan/phpstan-strict-rules": "^0.12.4",
"phpunit/phpunit": "^9.5.0",
"prooph/php-cs-fixer-config": "^v0.4.0",
"roave/security-advisories": "dev-master"
},
"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"
]
}
}