-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
36 lines (36 loc) · 838 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
{
"name": "technicalguru/webapp",
"description": "A ready-to-use framework to write web applications in PHP",
"type": "library",
"keywords": ["framework","bootstrap"],
"license" : "LGPL-3.0-or-later",
"authors": [
{
"name": "TechnicalGuru",
"homepage": "https://github.com/technicalguru/php-webapp"
}
],
"require": {
"php" : ">=7.0.0",
"technicalguru/vault" : "^1",
"technicalguru/utils" : "^1",
"technicalguru/database" : "~1.3",
"technicalguru/i18n" : "^1",
"technicalguru/rest-client" : "^1",
"technicalguru/email" : "^1",
"technicalguru/jquery" : "^1",
"technicalguru/bootstrap" : "^1",
"technicalguru/font-awesome" : "^1",
"willdurand/negotiation": "^3.0"
},
"autoload": {
"psr-4": {
"WebApp\\": "src/WebApp/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
}
}