Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2, 8.3]
laravel: [9.*, 10.*, 11.*]
php: [8.0, 8.1, 8.2, 8.3, 8.4]
laravel: [9.*, 10.*, 11.*, 12.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 12.*
testbench: 10.*
pest-plugin-laravel: 3.1.0

- laravel: 11.*
testbench: 9.*
pest-plugin-laravel: 2.3.0
Expand All @@ -25,15 +29,27 @@ jobs:
pest-plugin-laravel: 1.4.0

exclude:
- laravel: 12.*
php: 8.1

- laravel: 12.*
php: 8.0

- laravel: 11.*
php: 8.0

- laravel: 11.*
php: 8.1

- laravel: 10.*
php: 8.4

- laravel: 10.*
php: 8.0

- laravel: 9.*
php: 8.4

- laravel: 9.*
php: 8.3

Expand All @@ -55,5 +71,4 @@ jobs:
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "pestphp/pest-plugin-laravel:${{ matrix.pest-plugin-laravel }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/pest

run: vendor/bin/pest
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@
"laravel-stub",
"laravel stub",
"laravel stub package",
"laravel stub binafy"
"laravel stub binafy",
"laravel stub generator"
],
"homepage": "https://github.com/binafy/laravel-stub",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"illuminate/support": "^9.0|^10.0|^11.0"
"illuminate/support": "^9.0|^10.0|^11.0|^12.0"
},
"require-dev": {
"pestphp/pest-plugin-laravel": "1.*|2.*",
"orchestra/testbench": "8.*|9.*"
"pestphp/pest-plugin-laravel": "1.*|2.*|3.*",
"orchestra/testbench": "8.*|9.*|10.*"
},
"autoload": {
"psr-4": {
Expand All @@ -40,7 +41,7 @@
},
"authors": [
{
"name": "milwad-dev",
"name": "Milwad Khosravi",
"email": "[email protected]",
"role": "author",
"homepage": "https://github.com/milwad-dev"
Expand Down