forked from mghoneimy/php-graphql-oqm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.04 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
40
41
42
43
44
45
{
"name": "gmostafa/php-graphql-oqm",
"description": "GraphQL Object-to-Query Mapper (QOM) which generates objects from API schema",
"type": "library",
"license": "MIT",
"keywords": [
"graphql",
"graph-ql",
"php",
"query-builder",
"query",
"builder",
"object",
"object-mapper",
"generator",
"query-generator"
],
"authors": [
{
"name": "Mostafa Ghoneimy",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"GraphQL\\": "src/",
"GraphQL\\SchemaObject\\": "schema_object/"
}
},
"autoload-dev": {
"psr-4": {
"GraphQL\\Tests\\": "tests/"
}
},
"bin": ["bin/generate_schema_objects"],
"require": {
"php": "^7.1 || ^8.0",
"gmostafa/php-graphql-client": "^1.6 || ^1.9"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8.0",
"codacy/coverage": "^1.4",
"ext-json": "*"
}
}