-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.39 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.39 KB
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": "moefront/typecho-plugin-restful",
"type": "plugin",
"description":
"Yet another awesome Typecho plugin to make your blog RESTful.",
"license": "MIT",
"keywords": ["typecho", "typecho plugin"],
"homepage": "https://github.com/moefront/typecho-plugin-Restful",
"authors": [
{
"name": "kirainmoe",
"email": "i@kirainmoe.com"
},
{
"name": "kokororin",
"email": "i@kotori.love"
}
],
"support": {
"issues": "https://github.com/moefront/typecho-plugin-Restful/issues",
"source": "https://github.com/moefront/typecho-plugin-Restful"
},
"require": {
"php": ">=5.3.0",
"ext-curl": "*"
},
"require-dev": {
"catfan/medoo": "~1.5",
"guiguiboy/php-cli-progress-bar": "^0.0.4",
"guzzlehttp/guzzle": "~6.0",
"phpunit/phpunit": "^6.0",
"squizlabs/php_codesniffer": "^3.2",
"ssx/php-serve": "^0.0.3"
},
"autoload-dev": {
"psr-4": {
"MoeFront\\RestfulTests\\": "tests/"
}
},
"scripts": {
"test": ["@phpunit", "@phpcbf", "@phpcs"],
"phpunit": "php vendor/bin/phpunit",
"phpcs": "php vendor/bin/phpcs -s",
"phpcbf": "php vendor/bin/phpcbf || true"
},
"config": {
"process-timeout": 0,
"sort-packages": true
}
}