Skip to content

Commit

Permalink
Laravel 9 Support (#15)
Browse files Browse the repository at this point in the history
* wip

* wip

* version

* wip

* wip
  • Loading branch information
chrysanthos authored Feb 8, 2022
1 parent 4dee4ad commit 27ea56d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0]
laravel: [6.*, 7.*, 8.*]
php: [8.0, 8.1]
laravel: [8.*, 9.*]
include:
- laravel: 6.*
testbench: 4.*
- laravel: 7.*
testbench: 5.*
- laravel: 8.*
testbench: 6.*
- laravel: 9.*
testbench: 7.*

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

Expand All @@ -31,7 +29,7 @@ jobs:
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

- name: Setup PHP
uses: shivammathur/setup-php@v1
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 4.0.0 - 08-02-2022
- Laravel 9 support

## 3.0.0 - 17-07-2021
- PHP 8 Support

## 2.1.0 - 03-10-2020
- Laravel 8 support

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
}
],
"require": {
"php": ">7.3",
"illuminate/support": "^6.5 | ^7.0 | ^8.0"
"php": "^8.0|^8.1",
"illuminate/support": "^8.0|^9.0"
},
"require-dev": {
"mockery/mockery": "^1.3.3",
"phpunit/phpunit": "^8.0"
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 27ea56d

Please sign in to comment.