forked from ifsnop/mysqldump-php
-
Notifications
You must be signed in to change notification settings - Fork 6
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
PHP 8.4 #51
Open
back-2-95
wants to merge
22
commits into
main
Choose a base branch
from
php-8.4
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
PHP 8.4 #51
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
1157380
Add PHP 8.4, drop unsupported PHP versions
back-2-95 e6747c7
GHA: try importing init sql
back-2-95 4f18876
GHA: try importing init sql 2
back-2-95 a603be3
GHA: try importing init sql 3
back-2-95 41b986e
Fix double space in INSERT IGNORE
back-2-95 e7747f9
GHA: use docker images as databases
back-2-95 a850025
GHA: use docker images as databases 2
back-2-95 3860140
GHA: use docker images as databases 3
back-2-95 5b3d5ba
GHA: use docker images as databases 4
back-2-95 e4de88b
GHA: use docker images as databases 5
back-2-95 8f013d7
GHA: use docker images as databases 6
back-2-95 0bf521c
GHA: use docker images as databases 7
back-2-95 8b8647b
GHA: use docker images as databases 8 bitnami images
back-2-95 aa78d75
GHA: use docker images as databases 9 bitnami images
back-2-95 118207b
GHA: use docker images as databases 10 bitnami images
back-2-95 1a9a2c6
GHA: use docker images as databases 11
back-2-95 5f236a3
GHA: use docker images as databases 12
back-2-95 0b0337d
GHA: use docker images as databases 13
back-2-95 efcb2dc
GHA: use docker images as databases 14
back-2-95 41733df
GHA: use docker images as databases 15
back-2-95 462b694
GHA: use docker images as databases 16
back-2-95 089db94
GHA: use docker images as databases 17
back-2-95 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
MARIADB_ROOT_PASSWORD=mysql | ||
MYSQL_ROOT_PASSWORD=mysql | ||
MYSQL_DATABASE=mysql | ||
MYSQL_USER=mysql | ||
MYSQL_PASSWORD=mysql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,91 +1,65 @@ | ||
version: '3.7' | ||
|
||
services: | ||
|
||
db: | ||
container_name: mysqldump-php-mysql-57 | ||
image: druidfi/mysql:5.7-drupal | ||
ports: | ||
- 3306 | ||
|
||
db2: | ||
mysql: | ||
container_name: mysqldump-php-mysql-80 | ||
image: druidfi/mysql:8.0-drupal | ||
ports: | ||
- 3306 | ||
|
||
db3: | ||
container_name: mysqldump-php-mariadb-80 | ||
image: druidfi/mariadb:10.11-drupal | ||
ports: | ||
- 3306 | ||
|
||
php74: | ||
container_name: mysqldump-php-74 | ||
image: mysqldump-php-tester:php-7.4 | ||
build: | ||
context: . | ||
args: | ||
PHP_SHORT_VERSION: "74" | ||
image: bitnami/mysql:8.0 | ||
env_file: | ||
- .env.mysql | ||
volumes: | ||
- .:/app | ||
depends_on: | ||
- db | ||
- db2 | ||
- db3 | ||
- ./docker-entrypoint-initdb.d/mysql-init.sql:/docker-entrypoint-initdb.d/00-init.sql | ||
|
||
php80: | ||
container_name: mysqldump-php-80 | ||
image: mysqldump-php-tester:php-8.0 | ||
build: | ||
context: . | ||
args: | ||
PHP_SHORT_VERSION: "80" | ||
mariadb: | ||
container_name: mysqldump-php-mariadb-10 | ||
image: bitnami/mariadb:10.11 | ||
env_file: | ||
- .env.mysql | ||
volumes: | ||
- .:/app | ||
depends_on: | ||
- db | ||
- db2 | ||
- db3 | ||
- ./docker-entrypoint-initdb.d/mariadb-init.sql:/docker-entrypoint-initdb.d/00-init.sql | ||
|
||
php81: | ||
container_name: mysqldump-php-81 | ||
image: mysqldump-php-tester:php-8.1 | ||
build: | ||
context: . | ||
args: | ||
PHP_SHORT_VERSION: "81" | ||
PHP_SHORT_VERSION: 81 | ||
volumes: | ||
- .:/app | ||
depends_on: | ||
- db | ||
- db2 | ||
- db3 | ||
- mysql | ||
- mariadb | ||
|
||
php82: | ||
container_name: mysqldump-php-82 | ||
image: mysqldump-php-tester:php-8.2 | ||
build: | ||
context: . | ||
args: | ||
PHP_SHORT_VERSION: "82" | ||
PHP_SHORT_VERSION: 82 | ||
volumes: | ||
- .:/app | ||
depends_on: | ||
- db | ||
- db2 | ||
- db3 | ||
- mysql | ||
- mariadb | ||
|
||
php83: | ||
container_name: mysqldump-php-83 | ||
image: mysqldump-php-tester:php-8.3 | ||
build: | ||
context: . | ||
args: | ||
PHP_SHORT_VERSION: "83" | ||
PHP_SHORT_VERSION: 83 | ||
volumes: | ||
- .:/app | ||
depends_on: | ||
- mysql | ||
- mariadb | ||
|
||
php84: | ||
container_name: mysqldump-php-84 | ||
build: | ||
context: . | ||
args: | ||
PHP_SHORT_VERSION: 84 | ||
volumes: | ||
- .:/app | ||
depends_on: | ||
- db | ||
- db2 | ||
- db3 | ||
- mysql | ||
- mariadb |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Suggestion: PHP 8.0 -> 8.1 if that's the minimum supported version (or one might want to set it to 8.1 <-> 8.4 as this makes it clear what versions are supported?