forked from silverorange/admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.49 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.49 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
56
57
58
59
60
61
62
{
"name": "silverorange/admin",
"description": "Framework for backend admin website.",
"type": "library",
"keywords": [ "framework", "admin", "management" ],
"homepage": "https://github.com/silverorange/admin",
"license": "LGPL-2.1",
"authors": [
{
"name": "Charles Waddell",
"email": "charles@silverorange.com"
},
{
"name": "Isaac Grant",
"email": "isaac@silverorange.com"
},
{
"name": "Michael Gauthier",
"email": "mike@silverorange.com"
},
{
"name": "Nathan Frederikson",
"email": "nathan@silverorange.com"
},
{
"name": "Nick Burka",
"email": "nick@silverorange.com"
},
{
"name": "Steven Garrity",
"email": "steven@silverorange.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://composer.silverorange.com",
"only": ["silverorange/*"]
}
],
"require": {
"php": ">=8.1.0",
"ext-mbstring": "*",
"silverorange/site": "^14.5.0",
"silverorange/swat": "^7.1.0"
},
"require-dev": {
"silverorange/coding-standard": "^1.0.0"
},
"suggest": {
"robthree/twofactorauth": "required for the use of two factor authentication",
"bacon/bacon-qr-code": "required to show QR codes for two factor auth"
},
"autoload": {
"classmap": [ "Admin/" ]
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"post-install-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src",
"post-update-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src"
}
}