forked from petyots/api-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.44 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
{
"name": "petyots/api-guard",
"description": "A simple way of authenticating your APIs with API keys using Laravel. Forked from chrisbjr/api-guard And Working with L5.3.* ",
"keywords": [
"api",
"rest",
"json",
"api keys",
"api authentication",
"laravel"
],
"homepage": "https://github.com/chrisbjr/api-guard",
"authors": [
{
"name": "Chris Bautista",
"email": "chrisbjr@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/auth": "5.1.* || 5.2.* || 5.3.*",
"illuminate/contracts": "5.1.* || 5.2.* || 5.3.*",
"illuminate/http": "5.1.* || 5.2.* || 5.3.*",
"illuminate/support": "5.1.* || 5.2.* || 5.3.*",
"nesbot/carbon": "^1.0",
"illuminate/database": "*",
"ellipsesynergie/api-response": "*"
},
"require-dev": {
"cartalyst/sentinel": "2.0.*",
"illuminate/console": "5.1.* || 5.2.* || 5.3.*",
"illuminate/database": "5.1.* || 5.2.* || 5.3.*",
"illuminate/routing": "5.1.* || 5.2.* || 5.3.*",
"mockery/mockery": "0.9.*",
"october/rain": "dev-stable",
"phpunit/phpunit": "^4.0 || ^5.0"
},
"autoload": {
"psr-4": {
"Chrisbjr\\ApiGuard\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"minimum-stability": "stable"
}