-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (51 loc) · 1.08 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
49
50
51
52
{
"name": "hametuha/wpametu",
"description": "A WordPress Theme FrameWork.",
"scripts": {
"test": "phpunit",
"phpcs": [
"phpcs --standard=phpcs.ruleset.xml $(find ./src -name '*.php')"
],
"phpcs-fix": [
"phpcbf --standard=phpcs.ruleset.xml $(find ./src -name '*.php')"
]
},
"require": {
"php": "^7.2|^8",
"masterminds/html5": "~2.1",
"google/recaptcha": "~1.1",
"tijsverkoyen/css-to-inline-styles": "^2.2",
"hametuha/pattern": "^1.0"
},
"require-dev": {
"phpunit/phpunit": ">=7",
"squizlabs/php_codesniffer": "^3.0",
"wp-coding-standards/wpcs": "^2.0",
"yoast/phpunit-polyfills": "^2.0",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"license": "MIT",
"authors": [
{
"name": "Hametuha INC.",
"email": "info@hametuha.co.jp"
}
],
"autoload": {
"psr-0": {
"WPametu": "src/"
}
},
"autoload-dev": {
"psr-0": {
"WPametuTest": "tests/src"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}