Skip to content

Commit 8b3b1b4

Browse files
authored
Develop (#99)
* Add support for Laravel 9 by @belzaaron * DROP Laravel 7,8 support * 8.0 min. php version
1 parent da46f68 commit 8b3b1b4

File tree

4 files changed

+21
-23
lines changed

4 files changed

+21
-23
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,12 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php: [8.0, 7.4, 7.3]
17-
laravel: [8.*, 7.*]
16+
php: [8.1, 8.0]
17+
laravel: [9.*]
1818
dependency-version: [prefer-lowest, prefer-stable]
1919
include:
20-
- laravel: 8.*
21-
testbench: 6.*
22-
- laravel: 7.*
23-
testbench: 5.*
24-
exclude:
25-
- laravel: 8.*
26-
php: 7.2
27-
- laravel: 7.*
28-
php: 8.0
20+
- laravel: 9.*
21+
testbench: 7.*
2922

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

@@ -51,4 +44,4 @@ jobs:
5144
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
5245
5346
- name: Execute tests
54-
run: vendor/bin/phpunit
47+
run: vendor/bin/phpunit

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: php
22

33
php:
4-
- 7.3
5-
- 7.4
4+
- 8.0
65

76
before_script:
87
- composer selfupdate

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## 5.0.0 - 2022-02-10
6+
### Added
7+
- Add support for Laravel 9 by @belzaaron
8+
- DROP Laravel 7,8 support
9+
- 8.0 min. php version
10+
511
## 4.4.1 - 2021-11-13
612
### Fix
713
- fix validation variable name

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
"settings"
1818
],
1919
"require": {
20-
"php": ">=7.3",
21-
"illuminate/config": "^7.0|^8.0",
22-
"illuminate/database": "^7.0|^8.0",
23-
"illuminate/support": "^7.0|^8.0",
24-
"illuminate/console": "^7.0|^8.0",
25-
"illuminate/filesystem": "^7.0|^8.0",
26-
"illuminate/cache": "^7.0|^8.0",
20+
"php": "^8.0",
21+
"illuminate/config": "^9.0",
22+
"illuminate/database": "^9.0",
23+
"illuminate/support": "^9.0",
24+
"illuminate/console": "^9.0",
25+
"illuminate/filesystem": "^9.0",
26+
"illuminate/cache": "^9.0",
2727
"ext-json": "*"
2828
},
2929
"require-dev": {
3030
"phpunit/phpunit": "^8.0|^9.0",
31-
"orchestra/testbench": "^5.0|^6.0",
32-
"friendsofphp/php-cs-fixer": "^2.16@dev",
31+
"orchestra/testbench": "^7.0",
32+
"friendsofphp/php-cs-fixer": "^3.6",
3333
"josiasmontag/laravel-redis-mock": "^1.2"
3434
},
3535
"suggest": {

0 commit comments

Comments
 (0)