-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.07 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
51
{
"name": "myrotvorets/wp-cloudflare-helper",
"type": "wordpress-plugin",
"description": "Cloudflare Helper",
"keywords": [
],
"license": "MIT",
"autoload": {
"classmap": [
"inc/"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require": {
"php": "^8.1.0",
"composer/installers": "^2.0",
"wildwolf/singleton-trait": "^1.0.1"
},
"require-dev": {
"automattic/vipwpcs": "^3.0",
"johnpbloch/wordpress-core": "^6.4.3",
"php-stubs/wordpress-stubs": "^6.4.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.4",
"phpunit/phpunit": "^9.6.16",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.21.1",
"wp-phpunit/wp-phpunit": "^6.4.2",
"yoast/phpunit-polyfills": "^3.0"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": "phpcs",
"phpcs:fix": "phpcbf",
"psalm": "psalm --long-progress --no-cache",
"test": "phpunit"
}
}