Skip to content

Commit

Permalink
Drop support Laravel 10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Jan 27, 2025
1 parent 3649762 commit cd62546
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup PHP 🔧
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.3
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: pcov
tools: composer:v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.4, 8.3, 8.2, 8.1]
php: [8.4, 8.3, 8.2]
os: [ubuntu-latest, windows-latest]
laravel: ["11.*", "10.*",]
laravel: ["11.*"]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 11.*
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"require": {
"composer-runtime-api": "^2.2",
"composer/semver": "^3.0",
"laravel/framework": "^10.0 || ^11.0",
"laravel/framework": "^11.0",
"laravel/scout": "^9.0 || ^10.0",
"orchid/blade-icons": "^4.0",
"tabuna/breadcrumbs": "^4.0",
Expand All @@ -48,10 +48,10 @@
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.14",
"orchestra/testbench": "^8.0 || ^9.0",
"orchestra/testbench-core": "^8.0 || ^9.0",
"orchestra/testbench-dusk": "^8.0 || ^9.0",
"phpunit/phpunit": "^10.0 || ^11.0"
"orchestra/testbench": "^9.0",
"orchestra/testbench-core": "^9.0",
"orchestra/testbench-dusk": "^9.0",
"phpunit/phpunit": "^11.0"
},
"conflict": {
"laravel/framework": "<10.48.25 || >=11.34.0",
Expand Down
2 changes: 1 addition & 1 deletion psalm.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<psalm
phpVersion="8.1"
phpVersion="8.2"
errorLevel="5"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://getpsalm.org/schema/config"
Expand Down

0 comments on commit cd62546

Please sign in to comment.