-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·41 lines (41 loc) · 1.1 KB
/
composer.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.1 KB
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
{
"name": "idci/graphql-client-bundle",
"type": "symfony-bundle",
"description": "Help you to process graphql query",
"keywords": ["graph", "graphql", "client"],
"license": "MIT",
"authors": [
{
"name": "Benjamin BOUDIER",
"email": "benjamin.boudier@idci-consulting.fr",
"homepage": "http://www.idci-consulting.fr"
}
],
"require": {
"php": "^7.1 || ^8.0",
"cfpinto/graphql": "^0.1.0",
"eightpoints/guzzle-bundle": "^8.0",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/framework-bundle": "^6.0 || ^7.0",
"symfony/translation": "^6.0 || ^7.0"
},
"suggest": {
"symfony/cache": "^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"IDCI\\Bundle\\GraphQLClientBundle\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"IDCI\\Bundle\\GraphQLClientBundle\\Tests\\": "tests/"
}
}
}