-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.28 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.28 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
{
"name": "enginescript/enginescript-site-exporter",
"description": "EngineScript Site Exporter - Export your entire WordPress site as a ZIP archive",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "EngineScript",
"email": "support@enginescript.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"yoast/phpunit-polyfills": "^2.0",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.3",
"phpcsstandards/phpcsextra": "^1.5",
"dealerdirect/phpcodesniffer-composer-installer": "^1.2",
"friendsofphp/php-cs-fixer": "^3.94",
"php-stubs/wordpress-stubs": "^6.9",
"szepeviktor/phpstan-wordpress": "^2.0",
"phpstan/phpstan": "^2.1",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml",
"phpcs:fix": "phpcbf --standard=phpcs.xml",
"phpmd": "phpmd . text phpmd.xml --exclude vendor",
"phpstan": "phpstan analyze --memory-limit=1G",
"test": "phpunit",
"check-all": [
"@phpcs",
"@phpmd",
"@phpstan"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}