forked from cartalyst/sentinel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 2.11 KB
/
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
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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "cartalyst/sentinel",
"description": "PHP 5.4+ Fully-featured Authentication & Authorization System",
"keywords": [
"php",
"cartalyst",
"laravel",
"auth",
"security",
"codeigniter",
"fuelphp"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Cartalyst LLC",
"email": "[email protected]"
},
{
"name": "Ben Corlett",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Bruno Gaspar",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Dan Syme",
"email": "[email protected]",
"role": "Creator & Designer"
},
{
"name": "Suhayb Wardany",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"cartalyst/support": "~1.0",
"illuminate/support": "~5.0"
},
"require-dev": {
"illuminate/cookie": "~5.0",
"illuminate/database": "~5.0",
"illuminate/http": "~5.0",
"illuminate/session": "~5.0",
"ircmaxell/password-compat": "~1.0",
"mockery/mockery": "~0.9",
"paragonie/random_compat": "~1.1",
"phpunit/phpunit": "~4.0"
},
"suggest": {
"illuminate/database": "By default, Sentinel utilizes the powerful Illuminate database layer.",
"illuminate/events": "To hook into various events across Sentinel, we recommend using Illuminate's event dispatcher.",
"ircmaxell/password-compat": "Default hashing uses PHP 5.5 password_* functions, with forward-compatible support.",
"symfony/http-foundation": "Required for native implementations."
},
"autoload": {
"psr-4": {
"Cartalyst\\Sentinel\\": "src/"
}
},
"extra": {
"component": "package",
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"minimum-stability": "stable"
}