forked from Codeception/module-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add explicit support for PHP 8.3 in test pipeline (Codeception#71)
- Loading branch information
Showing
10 changed files
with
125 additions
and
9 deletions.
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# Exclude files that don't need to be present in packages (so they're not downloaded by Composer) | ||
/docker export-ignore | ||
/tests export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/Robofile.php export-ignore | ||
/Makefile export-ignore | ||
/*.md export-ignore | ||
/*.xml export-ignore | ||
/*.yml export-ignore | ||
/*.Dockerfile export-ignore |
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
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,29 @@ | ||
FROM php:8.1-fpm | ||
|
||
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/bin/ | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
unzip \ | ||
wget \ | ||
git \ | ||
zlib1g-dev \ | ||
libzip-dev \ | ||
libpq-dev \ | ||
default-mysql-client | ||
|
||
RUN install-php-extensions \ | ||
pdo_mysql-stable \ | ||
pdo_pgsql-stable \ | ||
pdo_dblib-stable \ | ||
pdo_sqlsrv-5.11.0 \ | ||
pgsql-stable \ | ||
zip-stable \ | ||
xdebug-3.3.2 | ||
|
||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer | ||
|
||
WORKDIR /var/www/html | ||
|
||
ENTRYPOINT ["tail"] | ||
CMD ["-f", "/dev/null"] |
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,29 @@ | ||
FROM php:8.2-fpm | ||
|
||
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/bin/ | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
unzip \ | ||
wget \ | ||
git \ | ||
zlib1g-dev \ | ||
libzip-dev \ | ||
libpq-dev \ | ||
default-mysql-client | ||
|
||
RUN install-php-extensions \ | ||
pdo_mysql-stable \ | ||
pdo_pgsql-stable \ | ||
pdo_dblib-stable \ | ||
pdo_sqlsrv-5.11.0 \ | ||
pgsql-stable \ | ||
zip-stable \ | ||
xdebug-3.3.2 | ||
|
||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer | ||
|
||
WORKDIR /var/www/html | ||
|
||
ENTRYPOINT ["tail"] | ||
CMD ["-f", "/dev/null"] |
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,29 @@ | ||
FROM php:8.3-fpm | ||
|
||
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/bin/ | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
unzip \ | ||
wget \ | ||
git \ | ||
zlib1g-dev \ | ||
libzip-dev \ | ||
libpq-dev \ | ||
default-mysql-client | ||
|
||
RUN install-php-extensions \ | ||
pdo_mysql-stable \ | ||
pdo_pgsql-stable \ | ||
pdo_dblib-stable \ | ||
pdo_sqlsrv-5.12.0 \ | ||
pgsql-stable \ | ||
zip-stable \ | ||
xdebug-3.3.2 | ||
|
||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer | ||
|
||
WORKDIR /var/www/html | ||
|
||
ENTRYPOINT ["tail"] | ||
CMD ["-f", "/dev/null"] |
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
Empty file.