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

Bump minimum php version to 8.0 and dbal version to 3 #15

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
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 .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
vendor/

composer.lock
tests/_output/*
tests/_output/*
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ services:
- mariadb

php:
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- nightly
- hhvm

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ MySQL extensions for [Doctrine DBAL](https://github.com/doctrine/dbal).

## Requirements

PHP 7.2 and above. See the [releases page](https://github.com/pharako/mysql-dbal/releases) for previous versions that still work with PHP < 7.2.
PHP 8.0 and above. See the [releases page](https://github.com/pharako/mysql-dbal/releases) for previous versions that still work with PHP < 8.0.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion codeception.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ paths:
data: tests/_data
support: tests/_support
envs: tests/_envs
bootstrap: _bootstrap.php
settings:
bootstrap: _bootstrap.php
colors: true
memory_limit: 1024M
extensions:
Expand Down
9 changes: 6 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@
"name": "Claudio Bizzotto"
}],
"require": {
"php": ">=7.2",
"doctrine/dbal": "^2.10"
"php": "^8.0|^8.1",
"doctrine/dbal": "^3"
},
"require-dev": {
"codeception/codeception": "^3.1"
"codeception/codeception": "^4.1",
"codeception/module-asserts": "*",
"codeception/module-sequence": "*",
"codeception/module-db": "*"
},
"autoload": {
"psr-4": {
Expand Down
Loading