-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.04 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
{
"name": "kunoichi/hakama",
"description": "WooCommerce theme for kunoichi.",
"type": "wordpress-theme",
"license": "GPL-3.0-or-later",
"scripts": {
"cs": [
"vendor/bin/phpcs --config-set installed_paths $(pwd)/vendor/wp-coding-standards/wpcs",
"vendor/bin/phpcs --standard=phpcs.ruleset.xml $(find ./app -name '*.php')",
"vendor/bin/phpcs --standard=phpcs.ruleset.xml functions.php"
],
"test": "phpunit"
},
"authors": [
{
"name": "fumikito",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^5.6|^7.0",
"kuno1/redirect-to-woocommerce": "^1.0",
"kunoichi/block-library": "^1.7",
"kunoichi/icon": "^0.8.0",
"hametuha/wp-block-creator": "^1.1",
"kunoichi/theme-customizer": "^0.5.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^2.8",
"wp-coding-standards/wpcs": "^0.11",
"hametuha/hashboard": "^0.8.3"
},
"autoload": {
"psr-0": {
"Kunoichi\\Hakama": "app"
}
}
}