diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index b32932c..08ca68a 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -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 | diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b068b41..206417c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a61fdc..7ac3e08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 -------------------- diff --git a/composer.json b/composer.json index da27564..d0ee422 100644 --- a/composer.json +++ b/composer.json @@ -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": { @@ -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": [ {