This repository was archived by the owner on Mar 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·55 lines (55 loc) · 1.36 KB
/
composer.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.36 KB
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
{
"name": "bruno/setrobot",
"description": "A opinionated Wordpress base theme based on Sage",
"keywords": ["wordpress", "sage", "setrobot", "theme"],
"license": "MIT",
"support": {
"issues": "https://github.com/3runoDesign/setRobot/issues",
"source": "https://github.com/3runoDesign/setRobot"
},
"authors": [
{
"name": "Bruno Fernando",
"email": "bruno2fernando@gmail.com"
}
],
"require": {
"php": ">=7.1",
"composer/installers": "~1.4.0",
"illuminate/support": "~5.6",
"roots/sage-lib": "~9.0.1",
"soberwp/controller": "~9.0.0-beta.4",
"soberwp/models": "^1.0.6-p",
"rarst/wps": "^1.1",
"vlucas/phpdotenv": "^2.4",
"johnbillion/extended-cpts": "^4",
"StoutLogic/acf-builder": "^1.6",
"press-bits/media-library-svg-display": "^0.1.2",
"tgmpa/tgm-plugin-activation": "^2.6"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.8.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"extra": {
"installer-paths": {
"vendor/{$name}/": ["rarst/wps"]
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"test": "phpcs",
"post-create-project-cmd": [
"@update-headers"
],
"update-headers": [
"App\\Lib\\PostCreateProject::updateHeaders"
]
}
}