-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.52 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.52 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
{
"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": {
"php": "^8.0",
"composer/installers": "^1.0|^2.0"
},
"config": {
"platform": {
"php": "8.0.0"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp-shim": true
},
"process-timeout": 3600
},
"scripts": {
"test": "npm run test:unit:once",
"test:phpunit": "vendor/bin/phpunit",
"test:unit": "npm run test:unit",
"test:unit:report": "npm run test:unit:report",
"test:unit:once": "npm run test:unit:once",
"test:setup": "npm run test:setup",
"wp-env:start": "npm run wp-env:start",
"wp-env:stop": "npm run wp-env:stop",
"wp-env:clean": "npm run wp-env:clean",
"cs": "./vendor/bin/phpcs",
"cbf": "./vendor/bin/phpcbf"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpro/grumphp-shim": "^1.13 || ^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"squizlabs/php_codesniffer": "^3.10",
"wp-coding-standards/wpcs": "^3.1"
}
}