-
Notifications
You must be signed in to change notification settings - Fork 45
/
composer.json
39 lines (39 loc) · 1004 Bytes
/
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
{
"name": "adamwathan/eloquent-oauth",
"description": "Stupid simple OAuth authentication with Laravel and Eloquent",
"authors": [
{
"name": "Adam Wathan",
"email": "adam.wathan@gmail.com"
}
],
"license": "MIT",
"require": {
"php": ">=5.5.0",
"illuminate/auth": "4.*|5.*|6.*",
"illuminate/session": "4.*|5.*|6.*",
"illuminate/database": "4.*|5.*|6.*",
"illuminate/http": "4.*|5.*|6.*",
"illuminate/routing": "4.*|5.*|6.*",
"illuminate/support": "4.*|5.*|6.*",
"socialnorm/socialnorm": "^0.2",
"socialnorm/facebook": "^0.2",
"socialnorm/github": "^0.2",
"socialnorm/linkedin": "^0.2",
"socialnorm/google": "^0.2",
"socialnorm/instagram": "^0.2",
"socialnorm/soundcloud": "^0.2"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "^4.8"
},
"autoload": {
"psr-4": {
"AdamWathan\\EloquentOAuth\\": "src/"
},
"classmap": [
"tests/FunctionalTestCase.php"
]
}
}