Skip to content

Commit d1827d5

Browse files
markvaneijkclaude
andcommitted
Add Laravel 13 support
- Widen illuminate/support to ^13.0 - Allow Pest ^4.0 and PHPUnit ^12.0 (required for Laravel 13) - Add Laravel 13 (testbench 11) and PHP 8.4 to the CI matrix - Update README support note Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent cd81584 commit d1827d5

3 files changed

Lines changed: 13 additions & 7 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.2, 8.3]
17-
laravel: [10.*, 11.*, 12.*]
16+
php: [8.2, 8.3, 8.4]
17+
laravel: [10.*, 11.*, 12.*, 13.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 10.*
@@ -26,6 +26,12 @@ jobs:
2626
- laravel: 12.*
2727
testbench: 10.*
2828
carbon: ^3.0
29+
- laravel: 13.*
30+
testbench: 11.*
31+
carbon: ^3.0
32+
exclude:
33+
- laravel: 13.*
34+
php: 8.2
2935

3036
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3137

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/vormkracht10/flysystem-uploadcare/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/vormkracht10/flysystem-uploadcare/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
66
[![Total Downloads](https://img.shields.io/packagist/dt/vormkracht10/flysystem-uploadcare.svg?style=flat-square)](https://packagist.org/packages/vormkracht10/flysystem-uploadcare)
77

8-
Flysystem adapter for Uploadcare with support for Laravel v9+ including Laravel 12.
8+
Flysystem adapter for Uploadcare with support for Laravel v9+ including Laravel 13.
99

1010
## Installation
1111

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@
1919
],
2020
"require": {
2121
"php": "^8.2",
22-
"illuminate/support": "^9.0|^10.0|^11.0|^12.0",
22+
"illuminate/support": "^9.0|^10.0|^11.0|^12.0|^13.0",
2323
"league/flysystem": "^3.0",
2424
"uploadcare/uploadcare-php": "^4.1"
2525
},
2626
"require-dev": {
2727
"laravel/pint": "^1.0",
2828
"nunomaduro/collision": "^8.0",
2929
"larastan/larastan": "^3.0",
30-
"pestphp/pest": "^3.0",
31-
"pestphp/pest-plugin-laravel": "^3.0",
30+
"pestphp/pest": "^3.0|^4.0",
31+
"pestphp/pest-plugin-laravel": "^3.0|^4.0",
3232
"phpstan/extension-installer": "^1.1",
3333
"phpstan/phpstan": "^2.1",
3434
"phpstan/phpstan-deprecation-rules": "^2.0",
3535
"phpstan/phpstan-phpunit": "^2.0",
36-
"phpunit/phpunit": "^11.0"
36+
"phpunit/phpunit": "^11.0|^12.0"
3737
},
3838
"autoload": {
3939
"psr-4": {

0 commit comments

Comments
 (0)