-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 853 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 853 Bytes
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": "axtiva/flexible-graphql-php",
"description": "Schema SDL first lib for generate php code from graphql sdl to TypeRegistry with webonyx/graphql-php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "bpteam",
"email": "bpteam22@gmail.com"
}
],
"autoload": {
"psr-4": {
"Axtiva\\FlexibleGraphql\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Axtiva\\FlexibleGraphql\\Example\\": "example/",
"Axtiva\\FlexibleGraphql\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"webonyx/graphql-php": "^15.30",
"nikic/php-parser": "^5"
},
"require-dev": {
"psr/container": "^1 | ^2",
"phpunit/phpunit": "^12",
"phpstan/phpstan": "^2.1",
"amphp/amp": "^3"
},
"suggest": {
"amphp/amp": "Needed for async execution support"
}
}