-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 905 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 905 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
{
"name": "awurth/quickslim",
"description": "Boilerplate for Slim PHP micro-framework",
"keywords": ["slim", "eloquent", "twig", "framework", "boilerplate", "skeleton"],
"homepage": "https://github.com/awurth/quickslim",
"license": "MIT",
"authors": [
{
"name": "Alexis Wurth",
"email": "alexis.wurth57@gmail.com",
"homepage": "https://github.com/awurth"
}
],
"autoload": {
"psr-4": {
"App\\": "src/App"
}
},
"require": {
"slim/slim": "^3.5",
"slim/twig-view": "^2.1",
"slim/flash": "^0.1.0",
"slim/csrf": "^0.7.0",
"illuminate/database": "^5.3",
"respect/validation": "^1.1",
"cartalyst/sentinel": "^2.0",
"illuminate/events": "^5.3",
"symfony/http-foundation": "^3.1",
"codeguy/upload": "^1.3"
}
}