-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.03 KB
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "saulmoralespa/integration-alegra-woo",
"description": "Integration Alegra Woocommerce",
"license": "MIT",
"authors": [
{
"name": "Saúl Morales Pacheco",
"email": "moralespachecopablo@gmail.com"
}
],
"require": {
"roots/wordpress": "^6.0"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"wp-phpunit/wp-phpunit": "^6.0",
"yoast/phpunit-polyfills": "^1.0",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"scripts": {
"test": "phpunit",
"phpcs": "phpcs --standard=WordPress --extensions=php --ignore=vendor,node_modules .",
"phpcbf": "phpcbf --standard=WordPress --extensions=php --ignore=vendor,node_modules .",
"phpcs-check": "phpcs --standard=WordPress includes/"
}
}