This repository has been archived by the owner on Jan 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
67 lines (67 loc) · 1.93 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
{
"name": "graham-campbell/credentials",
"description": "Credentials Is A Cool Way To Authenticate In Laravel 5",
"keywords": ["laravel", "framework", "credentials", "login", "users", "permissions", "sentry", "Credentials", "Laravel Credentials", "Laravel-Credentials", "Graham Campbell", "GrahamCampbell"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/BootstrapCMS/Sentry"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/console": "5.1.*",
"illuminate/contracts": "5.1.*",
"illuminate/database": "5.1.*",
"illuminate/events": "5.1.*",
"illuminate/http": "5.1.*",
"illuminate/mail": "5.1.*",
"illuminate/pagination": "5.1.*",
"illuminate/routing": "5.1.*",
"illuminate/support": "5.1.*",
"illuminate/validation": "5.1.*",
"illuminate/view": "5.1.*",
"cartalyst/sentry": "~3.0",
"graham-campbell/binput": "~3.0",
"graham-campbell/throttle": "~4.0",
"mccool/laravel-auto-presenter": "~3.0",
"psr/log": "~1.0"
},
"require-dev": {
"graham-campbell/testbench": "~3.0",
"phpunit/phpunit": "^4.7.6"
},
"suggest": {
"graham-campbell/navigation": "Easily add a navigation bar."
},
"autoload": {
"psr-4": {
"GrahamCampbell\\Credentials\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"GrahamCampbell\\Tests\\Credentials\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}