-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
48 lines (48 loc) · 1.15 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
{
"name": "silk/silk",
"description": "A modern API for WordPress",
"type": "library",
"authors": [
{
"name": "Evan Mattson",
"email": "[email protected]",
"homepage": "https://aaemnnost.tv"
}
],
"support": {
"docs": "https://github.com/aaemnnosttv/silk-docs",
"issues": "https://github.com/aaemnnosttv/silk/issues",
"source": "https://github.com/aaemnnosttv/silk"
},
"license": "MIT",
"require": {
"php": ">=5.6",
"tightenco/collect": "^5.4"
},
"require-dev": {
"johnpbloch/wordpress": "^4.9",
"mockery/mockery": "^0.9.5",
"phpunit/phpunit": "^5.0",
"satooshi/php-coveralls": "^1.0",
"wp-phpunit/wp-phpunit": "^4.9"
},
"autoload": {
"psr-4": {"Silk\\":"src"},
"files": ["src/functions.php"]
},
"autoload-dev": {
"classmap": [
"tests/src"
]
},
"scripts": {
"test": "phpunit",
"coverage": "coveralls"
},
"config": {
"sort-packages": true,
"platform": {
"php": "5.6.36"
}
}
}