forked from BootstrapCMS/Sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.8 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
{
"name": "cartalyst/sentry",
"description": "PHP 5.4+ Fully-featured Authentication & Authorization System",
"keywords": ["auth", "security", "laravel"],
"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"
},
{
"name": "Graham Campbell",
"email": "graham@mineuk.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/contracts": "5.0.*",
"illuminate/cookie": "5.0.*",
"illuminate/database": "5.0.*",
"illuminate/http": "5.0.*",
"illuminate/session": "5.0.*",
"illuminate/support": "5.0.*",
"ircmaxell/password-compat": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
"mockery/mockery": "~0.9.3"
},
"autoload": {
"classmap": [
"src/Groups/Exceptions.php",
"src/Throttling/Exceptions.php",
"src/Users/Exceptions.php"
],
"psr-4": {
"Cartalyst\\Sentry\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}