Skip to content

Commit

Permalink
Revert "Laravel 11.x Compatibility"
Browse files Browse the repository at this point in the history
  • Loading branch information
kkomelin committed Feb 29, 2024
1 parent a12af61 commit e66df3b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,18 @@ name: Tests

on:
push:
branches:
- master
branches: [master]
pull_request:
branches:
- master
branches: [master]

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [8.0, 8.1, 8.2]
laravel: ['8.*', '9.*', '10.*', '11.*']
laravel: [8.*, 9.*, 10.*]
include:
- laravel: 8.*
testbench: ^6.0
Expand All @@ -32,10 +29,6 @@ jobs:
laravel: 10.*
- php: 8.2
laravel: 8.*
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
"require": {
"php": "^8.0",
"ext-json": "*",
"illuminate/support": "^8|^9|^10.0|^11.0",
"illuminate/translation": "^8|^9|^10.0|^11.0",
"illuminate/support": "^8|^9|^10.0",
"illuminate/translation": "^8|^9|^10.0",
"symfony/finder": "^5|^6"
},
"require-dev": {
"nunomaduro/larastan": "^1.0|^2.0",
"phpunit/phpunit": "^9.0|^10.5",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0"
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit e66df3b

Please sign in to comment.