-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.05 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
{
"name": "xwp/formation",
"description": "Formation for WordPress.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"composer/installers": "^1.7"
},
"require-dev": {
"10up/wp_mock": "0.4.2",
"mockery/mockery": "1.3.0",
"php-coveralls/php-coveralls": "2.2.0",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.99",
"phpcompatibility/phpcompatibility-wp": "2.1.0",
"phpunit/phpunit": "8.5.0",
"wp-coding-standards/wpcs": "^3.0",
"wpsh/local": "0.2.3"
},
"scripts": {
"lint": [
"@composer validate --strict",
"phpcs ."
],
"test": [
"phpunit"
],
"coverage": [
"php-coveralls --verbose"
],
"build": [
"composer install --no-dev --prefer-dist --optimize-autoloader --no-scripts"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}