forked from litefeel/writing-on-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.14 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
{
"name": "embeddedartistry/wordpress-github-sync",
"description": "A WordPress plugin to support synchronization between Embedded Artistry Wordpress and GitHub.",
"type": "wordpress-plugin",
"minimum-stability": "stable",
"license": "GPL",
"authors": [
{
"name": "embeddedartistry",
"email": "[email protected]"
}
],
"autoload": {
"classmap": ["lib/"],
"files": ["lib/function.php"]
},
"autoload-dev": {
"classmap": ["tests/"]
},
"require": {
"php": ">=5.3",
"mustangostang/spyc": "^0.6.1"
},
"require-dev": {
"jdgrimes/wp-http-testcase": "1.3.1",
"mockery/mockery": "0.9.3",
"phpunit/phpunit": "^4.8",
"wp-coding-standards/wpcs": "0.7.1",
"squizlabs/php_codesniffer": "~2.3"
},
"scripts": {
"sniff": "phpcs --runtime-set installed_paths vendor/wp-coding-standards/wpcs -p ./ --standard=WordPress --report=full --extensions=php --ignore=*/tests/*,*/vendor/*",
"clean": "phpcbf --runtime-set installed_paths vendor/wp-coding-standards/wpcs -p ./ --standard=WordPress --report=full --extensions=php --ignore=*/tests/*,*/vendor/*",
"test": "phpunit"
}
}