-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.14 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
45
{
"name": "bea/sanitize-filename",
"description": "Remove all punctuation and accents from the filename of uploaded files.",
"keywords":[
"wordpress",
"wordpress-plugin",
"uploads",
"sanitize",
"wordpress-mu-plugin",
"media"
],
"homepage":"https://github.com/BeAPI/bea-sanitize-filename",
"authors": [
{
"name":"Be API",
"email":"technique@beapi.fr",
"homepage":"https://beapi.fr/"
}
],
"type": "wordpress-muplugin",
"require": {
"composer/installers": "^1.0|^2.0"
},
"config": {
"platform": {
"php": "5.6.0"
},
"process-timeout": 3600
},
"scripts": {
"test": "vendor/bin/codecept run wpunit",
"test-local": "rm -rf wordpress/wp-content/uploads/ && vendor/bin/codecept run wpunit",
"cs": "./vendor/bin/phpcs",
"cbf": "./vendor/bin/phpcbf"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"lucatume/wp-browser": "dev-php-56-compat",
"phpro/grumphp-shim": "^1.13",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpcompatibility/php-compatibility": "^9.3",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^2.3"
}
}