-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.4 KB
/
Copy pathcomposer.json
File metadata and controls
59 lines (59 loc) · 1.4 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
58
59
{
"$schema": "https://getcomposer.org/schema.json",
"name": "ediamin/css-class-manager",
"version": "1.6.1",
"description": "An advanced autocomplete additional css class control for your blocks.",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Edi Amin",
"email": "to.ediamin@gmail.com"
}
],
"require": {
"php": ">=7.4"
},
"autoload": {
"psr-4": {
"CSSClassManager\\": "includes/"
},
"files": [
"includes/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"CSSClassManager\\Tests\\": "tests/php/"
}
},
"scripts": {
"analyze": "phpstan analyze",
"phpcs": "phpcs",
"phpcbf": "phpcbf -p"
},
"require-dev": {
"automattic/vipwpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^9.6.33",
"slevomat/coding-standard": "^8.14",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"wp-phpunit/wp-phpunit": "^6.8",
"yoast/phpunit-polyfills": "^4.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"audit": {
"ignore": {
"PKSA-5jz8-6tcw-pbk4": {
"apply": "block",
"reason": "GitHub/Packagist currently report GHSA-qrr6-mg7r-m243 as affecting all phpunit/phpunit versions <=12.5.21, which incorrectly sweeps in the repo's PHPUnit 9.6.34 test dependency."
}
}
}
}
}