-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
43 lines (43 loc) · 1.44 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
{
"name": "wpengine/atlas-content-modeler",
"description": "Plugin for content modeling in WordPress.",
"type": "project",
"prefer-stable": true,
"minimum-stability": "dev",
"require-dev": {
"codeception/module-asserts": "^1.3.1",
"codeception/module-cli": "^1.1.1",
"codeception/module-db": "^1.1.0",
"codeception/module-filesystem": "^1.0.3",
"codeception/module-phpbrowser": "^1.0.2",
"codeception/module-webdriver": "^1.4.0",
"codeception/util-universalframework": "^1.0.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"lucatume/wp-browser": "3.0.9",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpcompatibility/phpcompatibility-wp": "^2.1.3",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6.0",
"wp-coding-standards/wpcs": "^2.3.0",
"yoast/phpunit-polyfills": "^2.0"
},
"scripts": {
"lint": "parallel-lint -e php --no-colors --exclude vendor .",
"phpcs": "phpcs",
"phpcs:fix": "phpcbf",
"suite": [
"@lint",
"@phpcs",
"@test"
],
"test": "phpunit"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}