-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.32 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
50
51
52
53
{
"name": "phonetworks/pho-compiler",
"type": "library",
"description": "Compiles GraphQL schema into PHP classes for use in Pho stack.",
"keywords": [
"graph",
"network",
"social",
"graphql",
"graphql schema",
"schema",
"data modeling",
"schema model",
"sql"
],
"homepage": "https://phonetworks.org",
"license": "MIT",
"authors": [
{
"name": "Emre Sokullu",
"email": "emre@phonetworks.org",
"homepage": "http://www.emresokullu.com"
}
],
"require": {
"php":">=5.3.0",
"ext-dom": "*",
"ext-curl": "*",
"phonetworks/pho-lib-graphql-parser": "^3.0",
"danielstjules/stringy": "^3.0",
"mustache/mustache": "^2.11",
"kyeates/psr-loggers": "^1.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"phpdocumentor/phpdocumentor": "*" ,
"psy/psysh": "*",
"fzaninotto/faker": "^1.6",
"squizlabs/php_codesniffer": "3.*",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Pho\\Compiler\\": "src/Pho/Compiler/"
}
},
"autoload-dev": {
"psr-4": {
"Pho\\Compiler\\": "tests/Pho/Compiler/"
}
}
}