-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 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
44
{
"name": "strategy11/another-wordpress-classifieds-plugin",
"description": "A plugin that provides the ability to run a free or paid classified ads servie on your WP site.",
"type": "wordpress-plugin",
"autoload": {
"classmap": [
"admin",
"frontend",
"includes",
"installer.php"
]
},
"autoload-dev": {
"classmap": [
"tests/includes"
],
"exclude-from-classmap": [
"vendor/composer"
]
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.0",
"antecedent/patchwork": "^2.1.21",
"brain/monkey": "dev-dev",
"dealerdirect/phpcodesniffer-composer-installer": "0.*",
"phake/phake": "^4.0",
"phpcompatibility/php-compatibility": "*",
"squizlabs/php_codesniffer": "^3.7.0",
"wp-coding-standards/wpcs": "^3",
"php-stubs/wordpress-stubs": "^6.0",
"phpstan/phpstan": "^1.8",
"dms/phpunit-arraysubset-asserts": "^0.4.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"format": "phpcbf . --standard=phpcs.xml --extensions=php --report-summary --report-source -d memory_limit=512M",
"phpcs": "phpcs -p -s -v -n . --standard=phpcs.xml --extensions=php",
"phpstan": "vendor/bin/phpstan analyze ./ --memory-limit=2G"
}
}