datatable.directory codebase
https://datatable.directory/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
{
|
|
"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.*",
|
|
"illuminate/session": "4.*|5.*",
|
|
"illuminate/database": "4.*|5.*",
|
|
"illuminate/http": "4.*|5.*",
|
|
"illuminate/routing": "4.*|5.*",
|
|
"illuminate/support": "4.*|5.*",
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
|