Skip to content

Commit

Permalink
Merge pull request #25 from abordage/laravel-11
Browse files Browse the repository at this point in the history
Laravel 11
  • Loading branch information
abordage committed Mar 23, 2024
2 parents 568658c + 1c08cb7 commit c9d65e7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,36 @@ jobs:
matrix:
stability: [ prefer-stable ]
os: [ ubuntu-latest ]
php: [7.4, 8.0, 8.1, 8.2]
laravel: [8.*, 9.*, 10.*]
php: [7.4, 8.0, 8.1, 8.2, 8.3]
laravel: [8.*, 9.*, 10.*, 11.*]
include:
- laravel: 8.*
testbench: ^6.0
- laravel: 9.*
testbench: ^7.0
- laravel: 10.*
testbench: ^8.0
- laravel: 11.*
testbench: ^9.0
exclude:
- php: 7.4
laravel: 9.*
- php: 7.4
laravel: 10.*
- php: 7.4
laravel: 11.*
- php: 8.0
laravel: 10.*
- php: 8.0
laravel: 11.*
- php: 8.1
laravel: 11.*
- php: 8.2
laravel: 8.*
- php: 8.3
laravel: 8.*
- php: 8.3
laravel: 9.*

name: Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }}

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ Very simple (and very fast) html compression.
- Very fast. See benchmark

## Requirements
- PHP 7.4 - 8.2
- Laravel 8 - 10
- PHP 7.4 - 8.3
- Laravel 8.x - 11.x

## Installation

Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@
"require": {
"php": ">=7.4",
"abordage/html-min": "^0.2.1",
"illuminate/support": "^8.0 || ^9.0 || ^10.0"
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"nunomaduro/collision": "^5.0 || ^6.0 || ^7.0",
"nunomaduro/collision": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"nunomaduro/larastan": "^1.0 || ^2.0",
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0",
"phpstan/phpstan": "^1.0",
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^9.6 || ^10.0"
},
"minimum-stability": "dev",
Expand Down

0 comments on commit c9d65e7

Please sign in to comment.