-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
executable file
·42 lines (42 loc) · 981 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
38
39
40
41
42
{
"name": "alexaandrov/laravel-graphql-client",
"description": "GraphQL client for laravel/lumen",
"type": "library",
"keywords": [
"api",
"client",
"graphql",
"laravel",
"laravel-graphql"
],
"license": "MIT",
"authors": [
{
"name": "Grigory Alexandrov",
"email": "[email protected]",
"homepage": "https://www.linkedin.com/in/alexaandrov/"
}
],
"require": {
"php": ">= 7.1",
"ext-json": "*",
"euautomation/graphql-client": "^0.2.0"
},
"autoload": {
"psr-4": {
"Alexaandrov\\GraphQL\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Alexaandrov\\GraphQL\\GraphQLClientServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}