Skip to content

Commit

Permalink
Support Laravel 6?
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed Nov 19, 2019
1 parent 03383bb commit a6ef61a
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
{
"name": "adamwathan/eloquent-oauth",
"description": "Stupid simple OAuth authentication with Laravel and Eloquent",
"authors": [
"name": "adamwathan/eloquent-oauth",
"description": "Stupid simple OAuth authentication with Laravel and Eloquent",
"authors": [
{
"name": "Adam Wathan",
"email": "adam.wathan@gmail.com"
"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"
],
"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/"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "^4.8"
},
"autoload": {
"psr-4": {
"AdamWathan\\EloquentOAuth\\": "src/"
},
"classmap": [
"tests/FunctionalTestCase.php"
]
}
"classmap": [
"tests/FunctionalTestCase.php"
]
}
}

0 comments on commit a6ef61a

Please sign in to comment.