-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 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
{
"name": "whaze/local-copycat",
"description": "Un plugin pour dupliquer facilement un site WordPress en local.",
"version": "1.0.0",
"authors": [
{
"name": "Whaze",
"email": "contact@jeromebuquet.com"
}
],
"autoload": {
"psr-4": {
"LocalCopyCat\\": "includes/"
}
},
"scripts": {
"lint:php": "phpcs -p --standard=WordPress --ignore=vendor/*,node_modules/* --extensions=php .",
"fix:php": "phpcbf -p --standard=WordPress --ignore=vendor/*,node_modules/* --extensions=php ."
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "dev-develop",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}