Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
os: >-
['ubuntu-latest']
php: >-
['8.4']
['8.5']
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
php:
- 8.1
- 8.2
- 8.3
- 8.4
- 8.5

steps:
- name: Checkout.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/composer-require-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ jobs:
uses: yiisoft/actions/.github/workflows/composer-require-checker.yml@master
with:
php: >-
['8.1', '8.2', '8.3', '8.4']
['8.1', '8.2', '8.3', '8.4', '8.5']
required-packages: >-
['db']
1 change: 1 addition & 0 deletions .github/workflows/mssql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
- 8.2
- 8.3
- 8.4
- 8.5

services:
mssql:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/mutation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
php:
- 8.4
- 8.5

services:
postgres:
Expand All @@ -58,8 +58,8 @@ jobs:
ini-values: date.timezone='UTC'
coverage: pcov

- name: Update composer.
run: composer self-update
- name: Install Composer dependencies
uses: ramsey/composer-install@v3

- name: Install db and db-pgsql.
uses: yiisoft/actions/install-packages@master
Expand All @@ -69,6 +69,6 @@ jobs:

- name: Run infection.
run: |
vendor/bin/roave-infection-static-analysis-plugin --threads=2 --ignore-msi-with-no-mutations --only-covered --test-framework-options="--testsuite=Pgsql"
vendor/bin/infection --threads=2 --ignore-msi-with-no-mutations --test-framework-options="--testsuite=Pgsql"
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
1 change: 1 addition & 0 deletions .github/workflows/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
- 8.2
- 8.3
- 8.4
- 8.5

services:
mysql:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/oracle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
- 8.2
- 8.3
- 8.4
- 8.5

services:
oci:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pgsql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
- 8.2
- 8.3
- 8.4
- 8.5

services:
postgres:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rector-cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jobs:
token: ${{ secrets.YIISOFT_GITHUB_TOKEN }}
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
php: '8.4'
php: '8.5'
required-packages: >-
['db']
2 changes: 2 additions & 0 deletions .github/workflows/sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ jobs:
php:
- 8.1
- 8.2
- 8.3
- 8.4
- 8.5

steps:
- name: Checkout.
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- Chg #279: Use `ColumnBuilder` class to create table column definitions (@Tigrov)
- Enh #282, #283, #293: Adapt to Yii DB changes (@Tigrov)
- Bug #286: Explicitly mark nullable parameters (@vjik)
- Chg #287: Change supported PHP versions to `8.1 - 8.4` (@Tigrov)
- Chg #287, #308: Change supported PHP versions to `8.1 - 8.5` (@Tigrov, @vjik)
- Enh #287: Minor refactoring (@Tigrov)
- Enh #289: Revert transactional migration when adding migration to history fails (@Tigrov)
- Chg #290: Remove `ext-filter` from `require` section of `composer.json` (@Tigrov)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Supports the following databases out of the box:

## Requirements

- PHP 8.1 - 8.4.
- PHP 8.1 - 8.5.

## Installation

Expand Down
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,18 @@
}
],
"require": {
"php": "8.1 - 8.4",
"php": "8.1 - 8.5",
"symfony/console": "^6.0|^7.0",
"yiisoft/db": "dev-master",
"yiisoft/injector": "^1.2"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.3",
"friendsofphp/php-cs-fixer": "^3.89.2",
"maglnet/composer-require-checker": "^4.7.1",
"phpunit/phpunit": "^10.5.45",
"rector/rector": "^2.0.10",
"roave/infection-static-analysis-plugin": "^1.35",
"spatie/phpunit-watcher": "^1.24",
"vimeo/psalm": "^5.26.1 || ^6.8.8",
"yiisoft/db-sqlite": "dev-master",
"yiisoft/di": "^1.3",
"yiisoft/files": "^2.0",
Expand All @@ -69,6 +68,11 @@
}
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"target-directory": "tools",
"forward-command": true
},
"config-plugin-options": {
"source-directory": "config"
},
Expand All @@ -80,7 +84,7 @@
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"bamarni/composer-bin-plugin": true,
"composer/package-versions-deprecated": true
}
},
Expand Down
2 changes: 2 additions & 0 deletions tools/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/*/vendor
/*/composer.lock
10 changes: 10 additions & 0 deletions tools/infection/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"require-dev": {
"infection/infection": "^0.26 || ^0.31.9"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}
5 changes: 5 additions & 0 deletions tools/psalm/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"require-dev": {
"vimeo/psalm": "^5.26.1 || ^6.8.8"
}
}
Loading