-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (41 loc) · 950 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
{
"name": "arthem/graphql-mapper",
"description": "A GraphQL model mapper",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/4rthem/graphql-mapper",
"authors": [
{
"name": "Arthur de Moulins",
"email": "arthurdemoulins@gmail.com"
}
],
"keywords": [
"graphql",
"model",
"mapping"
],
"require": {
"php": ">=5.4",
"webonyx/graphql-php": ">=0.5.0",
"symfony/yaml": ">=2.0.4"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.6.0"
},
"suggest": {
"doctrine/orm": "Use the Doctrine resolver"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Arthem\\GraphQLMapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {"Arthem\\GraphQLMapper\\Test\\": "tests/"}
}
}