Skip to content

Commit

Permalink
chore(deps): Allow Laravel 5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tymondesigns committed Feb 26, 2019
1 parent ef07317 commit 34d8e48
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 8 deletions.
22 changes: 21 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ matrix:
env: LARAVEL='5.6.*'
- php: 7.1
env: LARAVEL='5.7.*'
- php: 7.1
env: LARAVEL='5.8.*'
- php: 7.2
env: LARAVEL='5.1.*' XDEBUG=1
- php: 7.2
Expand All @@ -73,7 +75,25 @@ matrix:
- php: 7.2
env: LARAVEL='5.6.*' XDEBUG=1
- php: 7.2
env: COVERAGE=1 LARAVEL='5.7.*' XDEBUG=1
env: LARAVEL='5.7.*' XDEBUG=1
- php: 7.2
env: LARAVEL='5.8.*'
- php: 7.3
env: LARAVEL='5.1.*' XDEBUG=1
- php: 7.3
env: LARAVEL='5.2.*' XDEBUG=1
- php: 7.3
env: LARAVEL='5.3.*' XDEBUG=1
- php: 7.3
env: LARAVEL='5.4.*' XDEBUG=1
- php: 7.3
env: LARAVEL='5.5.*' XDEBUG=1
- php: 7.3
env: LARAVEL='5.6.*' XDEBUG=1
- php: 7.3
env: LARAVEL='5.7.*' XDEBUG=1
- php: 7.3
env: COVERAGE=1 LARAVEL='5.8.*' XDEBUG=1
fast_finish: true


Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@
],
"require": {
"php": "^5.5.9 || ^7.0",
"illuminate/auth": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
"illuminate/contracts": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
"illuminate/http": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
"illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
"illuminate/auth": "^5.1",
"illuminate/contracts": "^5.1",
"illuminate/http": "^5.1",
"illuminate/support": "^5.1",
"lcobucci/jwt": "^3.2",
"namshi/jose": "^7.0",
"nesbot/carbon": "^1.0"
},
"require-dev": {
"cartalyst/sentinel": "2.0.*",
"illuminate/console": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
"illuminate/database": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
"illuminate/routing": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
"illuminate/console": "^5.1",
"illuminate/database": "^5.1",
"illuminate/routing": "^5.1",
"mockery/mockery": ">=0.9.9",
"phpunit/phpunit": "~4.8 || ~6.0"
},
Expand Down

1 comment on commit 34d8e48

@Jovanie25
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how to make an authentication system on laravel using auth firebase

Please sign in to comment.