Skip to content

Commit

Permalink
Added support for Laravel 8, dropped for 7 and older
Browse files Browse the repository at this point in the history
  • Loading branch information
thijskok committed Dec 17, 2020
1 parent 9fa523d commit 635ca6b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
working_directory: ~/testmonitor/laravel-accountable

docker:
- image: circleci/php:7.2-browsers
- image: circleci/php:7.4-browsers

steps:
- run:
Expand Down
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: php

php:
- 7.2
- 7.3
- 7.4
- 8.0

# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
Expand All @@ -16,7 +15,6 @@ cache:

env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""

before_script:
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"illuminate/support": "^6.0|^7.0",
"illuminate/database": "^6.0|^7.0",
"illuminate/config": "^6.0|^7.0",
"illuminate/contracts": "^6.0|^7.0"
"illuminate/support": "^8.0",
"illuminate/database": "^8.0",
"illuminate/config": "^8.0",
"illuminate/contracts": "^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.11",
"phpunit/phpunit": "~8.2",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "3.*",
"orchestra/testbench": "^4.0|^5.0",
"orchestra/database": "^4.0|^5.0"
"orchestra/testbench": "^6.0",
"orchestra/database": "6.x-dev"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 635ca6b

Please sign in to comment.