This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 179
/
composer.json
68 lines (68 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "roots/soil",
"type": "wordpress-plugin",
"license": "MIT",
"description": "A WordPress plugin which contains a collection of modules to apply theme-agnostic front-end modifications",
"homepage": "https://roots.io/plugins/soil/",
"authors": [
{
"name": "Ben Word",
"email": "ben@benword.com",
"homepage": "https://github.com/retlehs"
},
{
"name": "Scott Walkinshaw",
"email": "scott.walkinshaw@gmail.com",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "QWp6t",
"email": "craig@roots.io",
"homepage": "https://github.com/qwp6t"
}
],
"abandoned": "roots/acorn-prettify",
"keywords": [
"wordpress"
],
"support": {
"issues": "https://github.com/roots/soil/issues",
"forum": "https://discourse.roots.io/"
},
"autoload": {
"psr-4": {
"Roots\\Soil\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Roots\\Soil\\Tests\\": "tests/",
"Roots\\Soil\\Tests\\Fixtures\\Modules\\": "tests/__fixtures__/modules/"
}
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"brain/monkey": "^2.5",
"phpunit/phpunit": "<= 9.3",
"mockery/mockery": "^1.3 | ^1.4",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.3"
},
"scripts": {
"test": "phpunit",
"lint": "phpcs",
"lint:fix": "phpcbf"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}