-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.06 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
{
"name": "x-graphql/schema-gateway",
"description": "Merging all sub schemas into one and add relationships for them",
"type": "library",
"require-dev": {
"guzzlehttp/promises": "^2.0",
"nyholm/psr7": "^1.8",
"phpunit/phpunit": "^11.0",
"symfony/cache": "^6.3 || ^7.0",
"symfony/http-client": "^6.3 || ^7.0",
"symplify/easy-coding-standard": "^12.1",
"x-graphql/http-schema": "^0.8.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"XGraphQL\\SchemaGateway\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XGraphQL\\SchemaGateway\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"webonyx/graphql-php": "^15.9",
"x-graphql/delegate-execution": "^0.9.0",
"x-graphql/schema-cache": "^0.1.0",
"x-graphql/utils": ">=0.2.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
}
}