Skip to content

Commit

Permalink
Clarify Laravel/PHP version support matrix (#753)
Browse files Browse the repository at this point in the history
* Add missing supported Laravel/PHP combinations to CI

* Update requirements.md
  • Loading branch information
HoldYourWaffle authored Dec 5, 2023
1 parent a836c8a commit 43dfccc
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 17 deletions.
34 changes: 22 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,28 @@ jobs:
fail-fast: true
matrix:
include:
- php: "8.3"
laravel: 10
- php: "8.2"
laravel: 10
- php: "8.1"
laravel: 9
- php: "8.0"
laravel: 8
- php: "7.4"
laravel: 8
- php: "7.3"
laravel: 8
- laravel: 10
php: "8.3"
- laravel: 10
php: "8.2"
- laravel: 10
php: "8.1"

- laravel: 9
php: "8.2"
- laravel: 9
php: "8.1"
- laravel: 9
php: "8.0"

- laravel: 8
php: "8.1"
- laravel: 8
php: "8.0"
- laravel: 8
php: "7.4"
- laravel: 8
php: "7.3"
name: PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }}
steps:
- uses: actions/checkout@v3
Expand Down
10 changes: 5 additions & 5 deletions doc/introduction/requirements.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Requirements

Lodata works with Laravel 8 (PHP 7.3 - 8.1) and Laravel 9 (PHP 8.0 - 8.1).
Lodata v5 works with:
- Laravel 8 (PHP 7.3 - 8.1)
- Laravel 9 (PHP 8.0 - 8.2)
- Laravel 10 (PHP 8.1 - 8.3)

* PHP: `^7.3|^7.4|^8.0`
* Laravel: `^8.0|^9.0`

To use any of the PDO database connectors you must have the correct PHP extensions installed.
To use any of the PDO database connectors you must have the correct PHP extensions installed.

0 comments on commit 43dfccc

Please sign in to comment.