-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.36 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.36 KB
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
57
{
"name": "zenbuapps/power-contract",
"description": "WordPress 線上簽合約 & 審批 外掛",
"type": "wordpress-plugin",
"license": "GPL-2.0-only",
"authors": [
{
"name": "JerryLiu",
"email": "j7.dev.gg@gmail.com",
"homepage": "https://github.com/j7-dev",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"autoload": {
"psr-4": {
"J7\\PowerContract\\": "inc/classes/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"require": {
"j7-dev/wp-plugin-trait": "0.2.10"
},
"autoload-dev": {
"psr-4": {
"Tests\\Integration\\": "tests/Integration/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "@stable",
"wp-coding-standards/wpcs": "@stable",
"dealerdirect/phpcodesniffer-composer-installer": "@stable",
"phpcompatibility/php-compatibility": "@stable",
"phpstan/phpstan": "^1.11.9",
"php-stubs/woocommerce-stubs": "^9.1",
"php-stubs/wordpress-stubs": "^6.6",
"phpstan/extension-installer": "^1.4.1",
"phpunit/phpunit": "^9.0",
"yoast/phpunit-polyfills": "^4.0",
"wp-phpunit/wp-phpunit": "^6.0"
},
"scripts": {
"lint": "phpcs",
"test": "vendor/bin/phpunit --colors=always --testdox --verbose",
"test:coverage": "vendor/bin/phpunit --coverage-text"
}
}