-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.09 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
53
54
55
56
{
"name": "hametuha/hametwoo",
"description": "A utility classes for WooCommerce development",
"type": "library",
"scripts": {
"test": "phpunit",
"lint": "phpcs --standard=phpcs.ruleset.xml",
"format": "phpcbf --standard=phpcs.ruleset.xml"
},
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "fumikito",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^6|^7|^8|^9",
"squizlabs/php_codesniffer": "^3.0",
"wp-coding-standards/wpcs": "^3.0.0",
"yoast/phpunit-polyfills": "^2.0.0",
"wpackagist-plugin/woocommerce": "^7.0"
},
"autoload": {
"psr-0": {
"Hametuha\\HametWoo": "src/"
}
},
"extra": {
"installer-paths": {
"vendor/plugins/{$name}/": [
"type:wordpress-plugin"
]
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}