Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compatibility with PHP 8.1 #193

Merged
merged 25 commits into from
Nov 8, 2021
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
2754f95
allow psr/log v2 (#191)
Oct 17, 2021
8600f89
php 8.1 support
srjlewis Oct 28, 2021
8ec00b9
Merge remote-tracking branch 'origin/3.x-actions' into 5.x-php8.1
srjlewis Oct 28, 2021
1ea6b17
php 8.1 support
srjlewis Oct 28, 2021
3669624
php 8.1 support
srjlewis Oct 28, 2021
9861463
php 8.1 support
srjlewis Oct 28, 2021
3befb1e
Merge remote-tracking branch 'origin/3.x' into 5.x-php8.1
srjlewis Oct 28, 2021
7050fa0
Remove JetBrains\PhpStorm\ArrayShape usage
srjlewis Oct 28, 2021
b2989f9
Fixing regression in composer.json with phpunit
srjlewis Oct 28, 2021
7fccf1b
correctly set minimum php version in composer
srjlewis Nov 3, 2021
579e653
Update composer.json to php 8.1
srjlewis Nov 3, 2021
4eb418b
Update .github/workflows/tests.yml to only test on with php 8.1
srjlewis Nov 3, 2021
2eb4485
Update test for a change in behavior
srjlewis Nov 3, 2021
04b6657
correct docblock to match type
srjlewis Nov 4, 2021
42146a0
test null default connection within ConnectionLocator and throw Conne…
srjlewis Nov 4, 2021
9d66473
Update src/PdoInterface.php
srjlewis Nov 7, 2021
421633f
Update src/PdoInterface.php
srjlewis Nov 7, 2021
4b84240
Update src/PdoInterface.php
srjlewis Nov 7, 2021
8de43af
Update src/PdoInterface.php
srjlewis Nov 7, 2021
48914ec
Update src/PdoInterface.php
srjlewis Nov 7, 2021
52b5340
Update src/PdoInterface.php
srjlewis Nov 7, 2021
aa574c9
Update src/AbstractExtendedPdo.php
srjlewis Nov 7, 2021
77746c2
Apply suggestions from code review
srjlewis Nov 7, 2021
e324cc0
update phpunit config
srjlewis Nov 7, 2021
fcd128a
re-add PdoInterface::getAvailableDrivers() and add a test for this me…
srjlewis Nov 7, 2021
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/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
php-versions: ['8.0', '8.1']
srjlewis marked this conversation as resolved.
Show resolved Hide resolved
steps:
- name: Download standard files
uses: actions/checkout@v2
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
}
],
"require": {
"php": ">=5.6.0",
"psr/log": "^1.0"
"php": ">=8.0",
srjlewis marked this conversation as resolved.
Show resolved Hide resolved
"psr/log": "^1.0 || ^2.0",
"ext-pdo": "*"
},
"autoload": {
"psr-4": {
Expand Down
Loading