-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
43 lines (43 loc) · 948 Bytes
/
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
{
"name": "micropackage/requirements",
"description": "Requirements checker for WordPress plugins",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Jakub Mikita",
"email": "jakub@bracketspace.com"
}
],
"scripts": {
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpunit": "phpunit",
"phpunit-coverage": "phpunit --coverage-text"
},
"require": {
"php": ">=5.6",
"micropackage/internationalization": "^1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.1",
"wp-coding-standards/wpcs": "^2.0",
"phpunit/phpunit": "^6.5.5",
"php-mock/php-mock-phpunit": "^2.5"
},
"autoload": {
"psr-4" : {
"Micropackage\\Requirements\\" : "src"
}
},
"autoload-dev": {
"psr-4" : {
"Micropackage\\Requirements\\Test\\" : "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}