-
Notifications
You must be signed in to change notification settings - Fork 51
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
Postgres support #109
Postgres support #109
Conversation
Since the project we are working on uses mariadb and now I am also migrating to postgresql and fortunately this library is also updating to support postgresql. After I tested it, so far I haven't found any errors. |
matrix: | ||
php: [ 8.3, 8.2, 8.1 ] | ||
laravel: [ 10.* ] | ||
db: [ 'mysql:8.0', 'mysql:5.7', 'mariadb:10.9' ] | ||
dependency-version: [ prefer-lowest, prefer-stable ] | ||
db: [ 'mysql:8.0', 'mysql:5.7', 'mariadb:10.11', 'postgis/postgis:16-3.4', 'postgis/postgis:15-3.4', 'postgis/postgis:14-3.4', 'postgis/postgis:13-3.4', 'postgis/postgis:12-3.4' ] | ||
dependency-version: [ prefer-stable, prefer-lowest ] | ||
include: | ||
- laravel: 10.* | ||
testbench: ^8.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How to run the combinations of PHP 8.2/8.1 and dependency version prefer-lowest only when DB is mysql:8.0?
In other words, all the DBs except MySQL 8 should run with PHP 8.3 and prefer-stable only.
Closes #93