Skip to content

Commit

Permalink
Merge pull request #76 from faytekin/build/laravel-11x
Browse files Browse the repository at this point in the history
  • Loading branch information
saibotk authored Mar 15, 2024
2 parents 841292b + 3d2f924 commit 8297516
Show file tree
Hide file tree
Showing 6 changed files with 2,021 additions and 1,223 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,19 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.1]
laravel: [9.*, 10.*]
php: [8.3, 8.2, 8.1]
laravel: [9.*, 10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
exclude:
- laravel: 11.*
php: 8.1

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

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added
- Laravel 11.x support

### Improved
- Updated `spatie/invade` to v2, works without reflection now 🥳

Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,25 @@
],
"require": {
"php": "^8.1",
"illuminate/console": "^9.0|^10.0",
"illuminate/contracts": "^9.28|^10.0",
"illuminate/database": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/console": "^9.0|^10.0|^11.0",
"illuminate/contracts": "^9.28|^10.0|^11.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"spatie/invade": "^2.0",
"spatie/laravel-package-tools": "^1.14.0"
},
"require-dev": {
"doctrine/dbal": "^3.5",
"larastan/larastan": "^2.6",
"laravel/pint": "^1.2.1",
"nunomaduro/collision": "^6.0",
"orchestra/testbench": "^7.15|^8.0",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.1",
"nunomaduro/collision": "^6.0|^v8.1",
"orchestra/testbench": "^7.15|^8.0|^9.0",
"pestphp/pest": "^1.22|^2.34",
"pestphp/pest-plugin-laravel": "^1.1|^2.3",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.2",
"phpunit/phpunit": "^9.5",
"phpunit/phpunit": "^9.5|^10.5",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
Expand Down
Loading

0 comments on commit 8297516

Please sign in to comment.