-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.47 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.47 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
{
"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": ">=8.2"
},
"require-dev": {
"phpunit/phpunit": "^11.5 || ^12.0",
"yoast/phpunit-polyfills": "^4.0",
"squizlabs/php_codesniffer": "^3.13.5",
"wp-coding-standards/wpcs": "^3.3",
"phpcsstandards/phpcsextra": "^1.5",
"dealerdirect/phpcodesniffer-composer-installer": "^1.2",
"friendsofphp/php-cs-fixer": "^3.95",
"phpmd/phpmd": "^2.15",
"vimeo/psalm": "^6.16",
"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",
"psalm": "psalm --config=psalm.xml --show-info=true",
"phpstan": "phpstan analyze --memory-limit=1G",
"test": "phpunit --no-configuration --do-not-fail-on-empty-test-suite tests",
"check-all": [
"@phpcs",
"@phpmd",
"@psalm",
"@phpstan"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}