-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.47 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
46
47
48
49
50
{
"name": "swissspidy/media-experiments",
"description": "WordPress media experiments",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "Pascal Birchler",
"email": "swissspidy@chat.wordpress.org",
"homepage": "https://pascalbirchler.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"php-stubs/wordpress-tests-stubs": "^6.7.0",
"phpcompatibility/phpcompatibility-wp": "^2.0",
"phpstan/extension-installer": "^1.3",
"roave/security-advisories": "dev-latest",
"szepeviktor/phpstan-wordpress": "^2.0.0",
"wp-coding-standards/wpcs": "^3.0.1",
"yoast/phpunit-polyfills": "^3.0.0",
"johnbillion/wp-compat": "^1.0.0",
"phpstan/phpstan-strict-rules": "^2.0.0",
"phpstan/phpstan-phpunit": "^2.0.1",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"swissspidy/phpstan-no-private": "^1.0.0",
"phpstan/php-8-stubs": "^0.4.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "7.4"
}
},
"scripts": {
"format": "vendor/bin/phpcbf --report-summary --report-source .",
"lint": "vendor/bin/phpcs --report-summary --report-source .",
"phpstan": "phpstan analyse --memory-limit=2048M",
"test": "vendor/bin/phpunit",
"test:multisite": "vendor/bin/phpunit -c phpunit-multisite.xml.dist"
}
}