Skip to content

Commit

Permalink
Merge pull request #22 from abordage/laravel-11
Browse files Browse the repository at this point in the history
Laravel 11 support
  • Loading branch information
abordage committed Mar 23, 2024
2 parents 84ec3b3 + e41c8f7 commit 71b4138
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 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 @@ -48,8 +48,8 @@ messengers. [Learn more](https://ogp.me) about Open Graph.

## Requirements

- PHP 7.4 - 8.2
- Laravel 8.x - 10.x
- PHP 7.4 - 8.3
- Laravel 8.x - 11.x
- The Imagick PHP extension

## Installation
Expand Down
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,16 @@
"require": {
"php": ">=7.4",
"ext-imagick": "*",
"abordage/og-images": "^0.4.0",
"illuminate/support": "^8.0 || ^9.0 || ^10.0"
"abordage/og-images": "^0.4.1",
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"ext-fileinfo": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"mikey179/vfsstream": "^1.6",
"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": "stable",
Expand Down

0 comments on commit 71b4138

Please sign in to comment.