forked from ManiruzzamanAkash/wp-react-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.34 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
{
"name": "akash/wp-react-kit",
"description": "A simple starter kit to work in WordPress plugin development using WordPress Rest API, WP-script and many more...",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "ManiruzzamanAkash",
"email": "manirujjamanakash@gmail.com"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=7.0.0|8.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "dev-master",
"tareq1988/wp-php-cs-fixer": "dev-master",
"phpcompatibility/phpcompatibility-wp": "dev-master",
"wp-phpunit/wp-phpunit": "^6.0",
"yoast/phpunit-polyfills": "^1.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Akash\\JobPlace\\": "includes/",
"Akash\\JobPlace\\Tests\\": "tests/phpunit/"
}
},
"scripts": {
"phpcs": [
"phpcs -p -s"
],
"phpcbf": [
"phpcbf -p"
],
"test": [
"vendor/bin/phpunit"
],
"test:all": [
"phpcs -p -s & vendor/bin/phpunit"
]
}
}