-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
49 lines (49 loc) · 1.28 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
46
47
48
49
{
"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.12"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^9",
"ext-json": "*"
},
"scripts": {
"test": "phpunit tests/",
"test-and-generate-clover-coverage": "phpunit tests/ --whitelist src/ --coverage-clover build/coverage.xml",
"test-and-generate-text-coverage": "phpunit tests/ --whitelist src/ --coverage-text=build/coverage.txt"
}
}