forked from roots/sage-lib
-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
49 lines (49 loc) · 1021 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
44
45
46
47
48
49
{
"name": "roots/sage-lib",
"license": "MIT",
"description": "Library files for Sage Starter Theme",
"homepage": "https://roots.io/sage/",
"authors": [
{
"name": "QWp6t",
"email": "[email protected]",
"homepage": "https://github.com/qwp6t"
},
{
"name": "Ben Word",
"email": "[email protected]",
"homepage": "https://github.com/retlehs"
}
],
"keywords": [
"wordpress"
],
"support": {
"issues": "https://github.com/roots/sage-lib/issues",
"forum": "https://discourse.roots.io/"
},
"autoload": {
"psr-4": {
"Roots\\Sage\\": ""
}
},
"require": {
"php": "^7.4|^8.0",
"composer/installers": "^2.0",
"illuminate/view": "^8.82",
"illuminate/config": "^8.82"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6.2"
},
"scripts": {
"test": [
"phpcs --ignore=vendor --extensions=php --standard=PSR2 ."
]
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}