-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.18 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
{
"name": "phonetworks/pho-server-rest",
"type": "library",
"description": "A REST based management API for the Pho Kernel.",
"keywords": [
"graph",
"server",
"api",
"rest",
"reactphp",
"react",
"pho"
],
"homepage": "https://phonetworks.org",
"license": "MIT",
"authors": [
{
"name": "Emre Sokullu",
"email": "[email protected]",
"homepage": "http://www.emresokullu.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php":">=7.2.0",
"react/http": "^0.8.4",
"danielstjules/stringy": "^3.0",
"vlucas/phpdotenv": "^4.1",
"hansott/psr7-cookies": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"fzaninotto/faker": "^1.6",
"psy/psysh": "*",
"squizlabs/php_codesniffer": "^2.5",
"roave/security-advisories": "dev-master",
"guzzlehttp/guzzle": "^6.3"
},
"autoload": {
"psr-4": {
"Pho\\Server\\Rest\\": "src/Pho/Server/Rest/"
}
},
"autoload-dev": {
"psr-4": {
"": "tests/"
}
}
}