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
1 change: 1 addition & 0 deletions .github/workflows/bc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ jobs:
['ubuntu-latest']
php: >-
['8.4']
extensions: pdo_oci
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

env:
COMPOSER_ROOT_VERSION: 1.0.0
EXTENSIONS: pdo, pdo_oci
EXTENSIONS: pdo_oci

runs-on: ubuntu-latest

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/composer-require-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ jobs:
with:
php: >-
['8.1', '8.2', '8.3', '8.4', '8.5']
extensions: pdo_oci
required-packages: >-
['db']
2 changes: 1 addition & 1 deletion .github/workflows/mutation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

env:
COMPOSER_ROOT_VERSION: 1.0.0
EXTENSIONS: pdo, pdo_oci
EXTENSIONS: pdo_oci

runs-on: ${{ matrix.os }}

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rector-cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ jobs:
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
php: '8.1'
extensions: pdo_oci
required-packages: >-
['db']
1 change: 1 addition & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ jobs:
with:
php: >-
['8.1', '8.2', '8.3', '8.4']
extensions: pdo_oci
required-packages: >-
['db']
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Enh #392: Explicitly import classes and functions in "use" section (@mspirkov)
- Enh #393: Remove unnecessary files from Composer package (@mspirkov)
- Enh #394: Add `ext-pdo_oci` to `require` section of `composer.json` (@Tigrov)

## 2.0.0 December 05, 2025

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Driver supports Oracle 12c - 21c.
## Requirements

- PHP 8.1 - 8.5.
- `pdo` PHP extension.
- `pdo_oci` PHP extension.

## Installation

Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
],
"require": {
"ext-pdo": "*",
"ext-pdo_oci": "*",
"php": "8.1 - 8.5",
"yiisoft/db": "^2.0"
},
Expand Down
Loading