forked from roots/soil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.43 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
{
"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"
}
],
"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"
},
"scripts": {
"test": "phpunit",
"lint": "phpcs"
}
}