Skip to content

Commit cc96ae4

Browse files
mu1f407jderusse
andauthored
Add support for Laravel 10 and 11 (#1683)
* Add support for Laravel 10 and 11 * Bump version in branch alias * Add laralvel 10/11 in main composer.json --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 3204de4 commit cc96ae4

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
},
1919
"require-dev": {
2020
"friendsofphp/php-cs-fixer": "~3.54.0",
21-
"illuminate/cache": "^6.18.13 || ^7.10 || ^8.0 || ^9.0",
22-
"illuminate/queue": "^6.18.13 || ^7.10 || ^8.0 || ^9.0",
23-
"illuminate/support": "^6.18.13 || ^7.10 || ^8.0 || ^9.0",
21+
"illuminate/cache": "^6.18.13 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
22+
"illuminate/queue": "^6.18.11 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
23+
"illuminate/support": "^6.18.13 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
2424
"matthiasnoback/symfony-config-test": "^4.1 || ^5.0",
2525
"monolog/monolog": "^1.1 || ^2.0",
2626
"nette/php-generator": "^3.6 || ^4.1",

src/Integration/Laravel/Cache/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- Support for Laravel 10 and 11
8+
59
## 1.0.0
610

711
### Added

src/Integration/Laravel/Cache/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"php": "^7.2.5 || ^8.0",
1414
"ext-json": "*",
1515
"async-aws/dynamo-db": "^1.1 || ^2.0 || ^3.0",
16-
"illuminate/cache": "^6.18.13 || ^7.10 || ^8.0 || ^9.0",
17-
"illuminate/support": "^6.18.13 || ^7.10 || ^8.0 || ^9.0"
16+
"illuminate/cache": "^6.18.13 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
17+
"illuminate/support": "^6.18.13 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
1818
},
1919
"autoload": {
2020
"psr-4": {
@@ -28,7 +28,7 @@
2828
},
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "1.0-dev"
31+
"dev-master": "1.1-dev"
3232
},
3333
"laravel": {
3434
"providers": [

src/Integration/Laravel/Queue/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- Support for Laravel 10 and 11
8+
59
### Changed
610

711
- Fix CS

src/Integration/Laravel/Queue/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"require": {
1515
"php": "^7.2.5 || ^8.0",
1616
"async-aws/sqs": "^1.1 || ^2.0",
17-
"illuminate/queue": "^6.18.11 || ^7.10 || ^8.0 || ^9.0",
18-
"illuminate/support": "^6.18.13 || ^7.10 || ^8.0 || ^9.0"
17+
"illuminate/queue": "^6.18.11 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
18+
"illuminate/support": "^6.18.13 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
1919
},
2020
"autoload": {
2121
"psr-4": {
@@ -29,7 +29,7 @@
2929
},
3030
"extra": {
3131
"branch-alias": {
32-
"dev-master": "1.0-dev"
32+
"dev-master": "1.1-dev"
3333
},
3434
"laravel": {
3535
"providers": [

0 commit comments

Comments
 (0)