forked from nuevephp/laravel-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 834 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
{
"name": "ackee/laravel-session",
"description": "Laravel Session bridge for Slim 3",
"keywords": ["session", "middleware", "slimphp"],
"homepage": "http://github.com/ackeephp/laravel-session",
"license": "MIT",
"authors": [
{
"name": "Andrew Smith",
"email": "a.smith@silentworks.co.uk",
"homepage": "http://thoughts.silentworks.co.uk/"
}
],
"require": {
"php": ">=5.6.4",
"dflydev/fig-cookies": "^1.0",
"illuminate/config": "~5.2",
"illuminate/container": "~5.2",
"illuminate/support": "~5.2",
"illuminate/session": "~5.2",
"illuminate/database": "~5.2",
"slim/slim": "^3.0"
},
"autoload": {
"psr-4": {
"Ackee\\LaravelSession\\": "src/"
}
}
}