Skip to content

Commit

Permalink
Bump dependencies for Laravel 11 support.
Browse files Browse the repository at this point in the history
Due to changes in dependencies this raises the minimum support to Laravel 9.x and PHP 8.1
  • Loading branch information
bryannielsen committed Mar 20, 2024
1 parent 368509c commit f8ab2c1
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 17 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,16 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2]
php: [8.1, 8.2, 8.3]
os: [ubuntu-latest]
laravel: [8, 9, 10]
include:
- php: 7.4
laravel: [9,10,11]
exclude:
- php: 8.1
os: ubuntu-latest
laravel: 8
laravel: 11
- php: 8.3
os: ubuntu-latest
laravel: 10
exclude:
- php: 8.0
os: ubuntu-latest
laravel: 10
laravel: 9

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

Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

## [Unreleased]

### Added

- Now supporting Laravel 11

### Changed

- Dropped support for Laravel 8
- Minimum PHP version increased to 8.1
- Updated Rebing/GraphQL[https://github.com/rebing/graphql-laravel] Dependency from version 8.6 to 9.2
- Updated Rcrowe/TwigBridge[https://github.com/rcrowe/TwigBridge] Dependency from version 0.14.1 to 0.14.2

## [1.3.0] - 2024-03-18

### Added
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
"role": "Developer"
}],
"require": {
"php": ">= 7.2.5",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0",
"rcrowe/twigbridge": "^0.14.1",
"rebing/graphql-laravel": "^8.6"
"php": ">= 8.1",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"rcrowe/twigbridge": "^0.14.2",
"rebing/graphql-laravel": "^9.2.0"
},
"require-dev": {
"nunomaduro/collision": "^6.0",
"nunomaduro/collision": "^6.1",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
Expand Down
1 change: 1 addition & 0 deletions tests/fixtures/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<server name="APP_ENV" value="testing"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
<env name="APP_BASE_PATH" value="./"/>
<!-- <server name="DB_CONNECTION" value="sqlite"/> -->
<!-- <server name="DB_DATABASE" value=":memory:"/> -->
<env name="DB_DATABASE" value="coilpack"/>
Expand Down

0 comments on commit f8ab2c1

Please sign in to comment.