-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 959 Bytes
/
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
{
"name": "x-graphql/codegen",
"description": "Generating PHP code for executing GraphQL",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^11.0",
"symfony/filesystem": "^6.4 || ^7.0",
"symplify/easy-coding-standard": "^12.1"
},
"bin": [
"bin/x-graphql-codegen"
],
"license": "MIT",
"autoload": {
"psr-4": {
"XGraphQL\\Codegen\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XGraphQL\\Codegen\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"nette/php-generator": "^3.6 || ^4.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/string": "^6.4 || ^7.0",
"webonyx/graphql-php": "^15.9",
"x-graphql/delegate": "^0.1.0"
},
"config": {
"sort-packages": true
}
}