This repository was archived by the owner on Jan 18, 2018. It is now read-only.
forked from cartalyst/sentry
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
70 lines (70 loc) · 1.86 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
{
"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": "[email protected]"
},
{
"name": "Dan Syme",
"email": "[email protected]",
"role": "Creator & Designer"
},
{
"name": "Ben Corlett",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Daniel Petrie",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Bruno Gaspar",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Graham Campbell",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/contracts": "5.0.*|5.1.*",
"illuminate/cookie": "5.0.*|5.1.*",
"illuminate/database": "5.0.*|5.1.*",
"illuminate/http": "5.0.*|5.1.*",
"illuminate/session": "5.0.*|5.1.*",
"illuminate/support": "5.0.*|5.1.*"
},
"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/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}