Skip to content

Commit

Permalink
Develop (#99)
Browse files Browse the repository at this point in the history
* Add support for Laravel 9 by @belzaaron
* DROP Laravel 7,8 support
* 8.0 min. php version
  • Loading branch information
glorand authored Feb 10, 2022
1 parent da46f68 commit 8b3b1b4
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 23 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 7.4, 7.3]
laravel: [8.*, 7.*]
php: [8.1, 8.0]
laravel: [9.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
exclude:
- laravel: 8.*
php: 7.2
- laravel: 7.*
php: 8.0
- laravel: 9.*
testbench: 7.*

name: P ${{ matrix.php }} - L ${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand All @@ -51,4 +44,4 @@ jobs:
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: vendor/bin/phpunit
run: vendor/bin/phpunit
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
language: php

php:
- 7.3
- 7.4
- 8.0

before_script:
- composer selfupdate
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to `glorand/laravel-model-settings` will be documented in this file

## 5.0.0 - 2022-02-10
### Added
- Add support for Laravel 9 by @belzaaron
- DROP Laravel 7,8 support
- 8.0 min. php version

## 4.4.1 - 2021-11-13
### Fix
- fix validation variable name
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@
"settings"
],
"require": {
"php": ">=7.3",
"illuminate/config": "^7.0|^8.0",
"illuminate/database": "^7.0|^8.0",
"illuminate/support": "^7.0|^8.0",
"illuminate/console": "^7.0|^8.0",
"illuminate/filesystem": "^7.0|^8.0",
"illuminate/cache": "^7.0|^8.0",
"php": "^8.0",
"illuminate/config": "^9.0",
"illuminate/database": "^9.0",
"illuminate/support": "^9.0",
"illuminate/console": "^9.0",
"illuminate/filesystem": "^9.0",
"illuminate/cache": "^9.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"orchestra/testbench": "^5.0|^6.0",
"friendsofphp/php-cs-fixer": "^2.16@dev",
"orchestra/testbench": "^7.0",
"friendsofphp/php-cs-fixer": "^3.6",
"josiasmontag/laravel-redis-mock": "^1.2"
},
"suggest": {
Expand Down

0 comments on commit 8b3b1b4

Please sign in to comment.