Skip to content

Commit

Permalink
Laravel 10 support (#25)
Browse files Browse the repository at this point in the history
* Update run-tests-l9.yml

* Rename run-tests-l9.yml to run-tests-l10.yml

* Update composer.json

* Update composer.json

* Update run-tests-l10.yml

* Update composer.json

* Update run-tests-l10.yml

* Update phpunit.xml.dist

* Update phpunit.xml.dist

* Update phpunit.xml.dist

* Update composer.json

* Update run-tests-l10.yml

* Update run-tests-l10.yml
  • Loading branch information
LorenzoRogai authored Apr 7, 2023
1 parent 9691aff commit c97a0d8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Run Tests - L9"
name: "Run Tests - L10"

on: [push, pull_request]

Expand All @@ -9,19 +9,29 @@ jobs:
strategy:
fail-fast: false
matrix:
laravel: [8.*, 9.*]
php: [8.0, 7.4, 7.3]
laravel: [8.*, 9.*, 10.*]
php: [8.1, 8.0, 7.4, 7.3]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
exclude:
- laravel: 8.*
php: 8.1
- laravel: 9.*
php: 7.3
- laravel: 9.*
php: 7.4
- laravel: 10.*
php: 7.3
- laravel: 10.*
php: 7.4
- laravel: 10.*
php: 8.0

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
}
],
"require": {
"php": "^7.1 || ^7.3 || ^7.4 || ^8.0",
"aws/aws-sdk-php": "^3.145 || ^3.219",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.8"
"php": "^7.1 || ^7.3 || ^7.4 || ^8.0 || ^8.1",
"aws/aws-sdk-php": "^3.145 || ^3.219 || ^3.263",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.8 || ^10.6"
},
"require-dev": {
"orchestra/testbench": "^3.8 || ^5.0 || ^6.0 || ^7.4",
"orchestra/testbench": "^3.8 || ^5.0 || ^6.0 || ^7.4 || ^8.2",
"phpunit/phpunit": "^7.0||^8.4||^9.3.3"
},
"autoload": {
Expand Down

0 comments on commit c97a0d8

Please sign in to comment.