forked from webstractions/sage-xpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 857 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
{
"name": "webstractions/sage-xpress",
"description": "Extends Sage ~9-beta with Blade directives, component providers, streamlined configurations, and more. ",
"type": "package",
"keywords": [
"webstractions",
"roots",
"sage"
],
"homepage": "https://github.com/webstractions/sage-xpress",
"license": "MIT",
"authors": [
{
"name": "Ron Pugmire",
"homepage": "https://github.com/webstractions",
"role": "Developer"
}
],
"require": {
"php": ">=7"
},
"suggest": {
"filp/whoops": "^2.1"
},
"scripts": {
"post-install-cmd": [
"SageXpress\\Composer\\PostCommand::copyFiles"
],
"post-update-cmd": [
"SageXpress\\Composer\\PostCommand::copyFiles"
]
},
"autoload": {
"psr-4": {
"SageXpress\\": "src"
}
}
}