forked from efabrica-team/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 759 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 759 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": "efabrica/graphql",
"type": "library",
"description": "GraphQL API server.",
"keywords": [
"php",
"graphql",
"api"
],
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "Martin Petricko",
"email": "matopetricko@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"webonyx/graphql-php": "^15.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Efabrica\\GraphQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}