-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.05 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "ediamin/css-class-manager",
"version": "1.1.0",
"description": "An advanced autocomplete additional css class control for your blocks.",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Edi Amin",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4"
},
"autoload": {
"psr-4": {
"CSSClassManager\\": "includes/"
},
"files": [
"includes/functions.php"
]
},
"scripts": {
"analyze": "phpstan analyze",
"phpcs": "phpcs",
"phpcbf": "phpcbf -p"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/PHPCompatibility/PHPCompatibility"
}
],
"require-dev": {
"automattic/vipwpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "dev-develop",
"slevomat/coding-standard": "^8.14",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}