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

Drop support for PHP 7.x #129

Merged
merged 4 commits into from
Feb 1, 2024
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
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ jobs:

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-latest' ] #, macos-latest, windows-latest ]
php-version: [ '7.3', '7.4', '8.0', '8.1', '8.2' ]
php-version: [ '8.0', '8.1', '8.2' ]
hlcianfagna marked this conversation as resolved.
Show resolved Hide resolved

# https://docs.github.com/en/free-pro-team@latest/actions/guides/about-service-containers
services:
Expand Down Expand Up @@ -62,11 +63,11 @@ jobs:

# https://github.com/codecov/codecov-action
- name: Upload coverage results to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
if: always() && (matrix.php-version == '7.4' || startsWith(matrix.php-version, '8.'))
with:
files: ./build/logs/clover.xml
fail_ci_if_error: true
fail_ci_if_error: false

- name: Upload coverage results to Scrutinizer CI
if: always() && (matrix.php-version == '7.4' || startsWith(matrix.php-version, '8.'))
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ CHANGES for crate-dbal
Unreleased
==========

- Dropped support for PHP 7.x

2022/11/29 3.0.1
================

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3|^8.0|^8.1|^8.2",
"php": "^8.0|^8.1|^8.2",
hlcianfagna marked this conversation as resolved.
Show resolved Hide resolved
"doctrine/dbal": "^2",
"crate/crate-pdo": "^2"
},
Expand Down
Loading