-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
31 lines (31 loc) · 1.02 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
{
"name": "humanmade/asset-loader",
"description": "Utilities to seamlessly consume Webpack-bundled assets in WordPress themes & plugins.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"10up/wp_mock": "^1.0.0",
"automattic/vipwpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.99",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpcsstandards/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.5",
"staabm/annotate-pull-request-from-checkstyle": "^1.8",
"wp-coding-standards/wpcs": "^3.0"
},
"scripts": {
"lint": "phpcs .",
"lint:fix": "phpcbf .",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}