-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.17 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
{
"name": "phonetworks/pho-framework",
"type": "library",
"description": "The core framework that establishes the object-centered actor/graph model.",
"keywords": [
"graph",
"network",
"social"
],
"homepage": "https://phonetworks.org",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Emre Sokullu",
"email": "emre@phonetworks.org",
"homepage": "http://www.emresokullu.com"
}
],
"require": {
"php":">=7.2.0",
"zendframework/zend-file": "*",
"phonetworks/pho-lib-graph": "^9.1.0",
"psr/log": "^1.0",
"webmozart/assert": "^1.2",
"danielstjules/stringy": "^3.0",
"vlucas/valitron": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"phpdocumentor/phpdocumentor": "*" ,
"psy/psysh": "*",
"fzaninotto/faker": "^1.6",
"squizlabs/php_codesniffer": "3.*",
"mockery/mockery": "dev-master",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Pho\\Framework\\": "src/Pho/Framework/"
}
}
}