Skip to content

Commit

Permalink
add support for "illuminate/*" 11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
klimov-paul committed Mar 25, 2024
1 parent c5cc95c commit 6c4049f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
| Q | A
| ------------------------- | ---
| This Package Version | 1.?.?
| Laravel Framework Version | 10.?.?
| Laravel Framework Version | 11.?.?
| Yii Framework Version | 2.0.?
| PHP version |
| Operating system |
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: ['8.0', '8.1', '8.2']
php: ['8.0', '8.1', '8.2', '8.3']

steps:
- name: Checkout
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Yii2 to Laravel Migration Package Change Log
============================================

1.3.1 Under Development
-----------------------

- Enh: Added support for "illuminate/*" 11.0 (klimov-paul)


1.3.0, March 2, 2023
--------------------

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"require": {
"php": ">= 8.0",
"yiisoft/yii2": "~2.0.14",
"illuminate/console": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/http": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/console": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/http": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminatech/array-factory": "^1.2.4"
},
"require-dev": {
Expand All @@ -30,7 +30,7 @@
"illuminate/hashing": "*",
"illuminate/log": "*",
"illuminate/translation": "*",
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.0.7"
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.5"
},
"repositories": [
{
Expand Down

0 comments on commit 6c4049f

Please sign in to comment.