-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 loc) · 872 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
{
"name": "ignacio/taxonomy-block",
"authors": [
{
"name": "Ignacio Cruz",
"email": "[email protected]"
}
],
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^6.5",
"wp-coding-standards/wpcs": "^2.3",
"wp-phpunit/wp-phpunit": "^5.8",
"wordpress/wordpress": "^5.8",
"wp-cli/i18n-command": "^2.2"
},
"scripts": {
"phpcs:fix": "./vendor/bin/phpcbf --standard=phpcs.xml .",
"phpcs": "./vendor/bin/phpcs --standard=phpcs.xml .",
"pot": "wp i18n make-pot . --exclude='svn,build-wporg,build,docker,bin' languages/taxonomyblock.pot"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/WordPress/wordpress-develop.git"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}