-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
49 lines (49 loc) · 1.38 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": "phonetworks/pho-microkernel",
"type": "library",
"description": "Social-Enabled App Infrastructure",
"homepage": "https://phonetworks.org",
"license": "MIT",
"minimum-stability": "beta",
"prefer-stable": true,
"authors": [
{
"name": "Emre Sokullu",
"email": "emre@phonetworks.org",
"homepage": "http://www.emresokullu.com"
}
],
"require": {
"php":"^7.1",
"monolog/monolog": "^1.22",
"zendframework/zend-config": "*",
"pimple/pimple": "^1.1",
"phonetworks/pho-lib-graph": "^7.3",
"phonetworks/pho-framework": "^10.0",
"webmozart/assert": "^1.2",
"danielstjules/stringy": "^3.0",
"vlucas/phpdotenv": "^2.4",
"psr/log": "^1.0"
},
"require-dev": {
"pho-adapters/storage-filesystem": "dev-master",
"pho-adapters/database-redis": "dev-master",
"pho-adapters/events-local": "dev-master",
"pho-adapters/index-neo4j": "dev-master",
"phpunit/phpunit": "^6.0",
"phpdocumentor/phpdocumentor": "*",
"fzaninotto/faker": "^1.6",
"psy/psysh": "*",
"squizlabs/php_codesniffer": "^2.5"
},
"autoload": {
"psr-4": {
"Pho\\Kernel\\": "src/Pho/Kernel/"
}
},
"autoload-dev": {
"psr-4": {
"Pho\\Kernel\\": "tests/Pho/Kernel/"
}
}
}