forked from roots/sage-installer
-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
50 lines (50 loc) · 949 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
50
{
"name": "roots/sage-installer",
"description": "Sage starter theme installer",
"keywords": [
"sage",
"wordpress",
"theme",
"foundation",
"bootstrap",
"bootstrap 4",
"bootstrap 5",
"tachyons",
"tailwindcss"
],
"license": "MIT",
"authors": [
{
"name": "QWp6t",
"email": "[email protected]",
"homepage": "https://github.com/qwp6t"
},
{
"name": "Ben Word",
"email": "[email protected]",
"homepage": "https://github.com/retlehs"
}
],
"bin": [
"bin/sage"
],
"autoload": {
"psr-4": {
"Roots\\Sage\\Installer\\": "src/"
}
},
"require": {
"illuminate/console": "~8.82",
"illuminate/filesystem": "~8.82",
"ramsey/uuid": "^4.2.3",
"symfony/process": "^5.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "~3.6.2"
},
"scripts": {
"test": [
"phpcs src --extensions=php --standard=PSR2"
]
}
}