forked from cartalyst/sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (71 loc) · 1.78 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
{
"name": "cartalyst/sentry",
"description": "PHP 5.3+ Fully-featured Authentication & Authorization System",
"keywords": ["auth", "security", "laravel", "codeigniter", "fuelphp", "kohana"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Cartalyst LLC",
"email": "help@cartalyst.com"
},
{
"name": "Dan Syme",
"email": "dan.syme@cartalyst.com",
"role": "Creator & Designer"
},
{
"name": "Ben Corlett",
"email": "ben.corlett@cartalyst.com",
"role": "Developer"
},
{
"name": "Daniel Petrie",
"email": "dan.petrie@cartalyst.com",
"role": "Developer"
},
{
"name": "Bruno Gaspar",
"email": "bruno.gaspar@cartalyst.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"mockery/mockery": "0.7.2",
"illuminate/cookie": ">=4.0.9,<4.2",
"illuminate/database": ">=4.0.9,<4.2",
"illuminate/http": ">=4.0.9,<4.2",
"illuminate/session": ">=4.0.9,<4.2",
"ircmaxell/password-compat": "1.0.*"
},
"suggest": {
"illuminate/database": "Default sentry user, group and throttling implementations.",
"ircmaxell/password-compat": "Default hashing uses PHP 5.5 password_* functions, with forward-compatible support.",
"happydemon/txt": "Required Text helpers when using the Kohana implementation"
},
"autoload": {
"classmap": [
"src/Cartalyst/Sentry/Groups/Exceptions.php",
"src/Cartalyst/Sentry/Throttling/Exceptions.php",
"src/Cartalyst/Sentry/Users/Exceptions.php",
"src/migrations"
],
"psr-0": {
"Cartalyst\\Sentry": "src/"
}
},
"extra": {
"component": "package",
"frameworks": ["Laravel 3", "Laravel 4", "CodeIgniter 3", "FuelPHP 1", "Kohana"],
"versions": {
"1": "1.1/master",
"2": "master"
},
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"minimum-stability": "dev"
}