Skip to content

Commit 6c4049f

Browse files
committed
add support for "illuminate/*" 11.0
1 parent c5cc95c commit 6c4049f

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| Q | A
1010
| ------------------------- | ---
1111
| This Package Version | 1.?.?
12-
| Laravel Framework Version | 10.?.?
12+
| Laravel Framework Version | 11.?.?
1313
| Yii Framework Version | 2.0.?
1414
| PHP version |
1515
| Operating system |

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-latest]
13-
php: ['8.0', '8.1', '8.2']
13+
php: ['8.0', '8.1', '8.2', '8.3']
1414

1515
steps:
1616
- name: Checkout

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Yii2 to Laravel Migration Package Change Log
22
============================================
33

4+
1.3.1 Under Development
5+
-----------------------
6+
7+
- Enh: Added support for "illuminate/*" 11.0 (klimov-paul)
8+
9+
410
1.3.0, March 2, 2023
511
--------------------
612

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"require": {
1818
"php": ">= 8.0",
1919
"yiisoft/yii2": "~2.0.14",
20-
"illuminate/console": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
21-
"illuminate/http": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
20+
"illuminate/console": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
21+
"illuminate/http": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
2222
"illuminatech/array-factory": "^1.2.4"
2323
},
2424
"require-dev": {
@@ -30,7 +30,7 @@
3030
"illuminate/hashing": "*",
3131
"illuminate/log": "*",
3232
"illuminate/translation": "*",
33-
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.0.7"
33+
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.5"
3434
},
3535
"repositories": [
3636
{

0 commit comments

Comments
 (0)