-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 841 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 841 Bytes
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
{
"name": "millieofzo/arctosframework",
"type": "framework",
"framework":"ARCTOS",
"version": "1.0.6",
"env": "LIVE",
"copyright": "Roelof Jan van Golen",
"description": "Lightweight MVC framework",
"license": "MIT",
"authors": [
{
"name": "Roelof Jan van Golen",
"email": "r.vangolen@asb.nl"
}
],
"require": {
"php": ">=7.0.0",
"nikic/fast-route": "^1.3",
"ezyang/htmlpurifier": "^4.10",
"phpmailer/phpmailer": "^6.0",
"colshrapnel/safemysql": "^1.0",
"guzzlehttp/guzzle": "~6.0"
},
"autoload": {
"psr-4": {
"App\\Classes\\":"app/classes",
"App\\Controllers\\":"app/controllers",
"App\\Models\\":"app/models",
"App\\Routes\\":"routes"
},
"files": ["config/config.class.php"]
}
}