forked from xaviranik/boostimer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 981 Bytes
/
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
{
"name": "xaviranik/boostimer",
"description": "WooCommerce Product and stock availability scheduler WordPress plugin",
"type": "wordpress-plugin",
"license": "GPL",
"authors": [
{
"name": "Zabir Anik",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {},
"autoload": {
"psr-4": {
"Boostimer\\": "includes/"
},
"files": ["includes/functions.php"]
},
"require-dev": {
"wp-coding-standards/wpcs": "dev-master",
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpunit/phpunit": "^7",
"yoast/phpunit-polyfills": "^1.0"
},
"scripts": {
"phpcs": [
"phpcs -p -s"
],
"phpcbf": [
"phpcbf -p"
]
}
}