-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* maint/php84 Updated `.github/workflows/test.yml`. * maint/php84 Updated `.gitignore`. * maint/php84 Updated `docker-compose.yml`. * maint/php84 Created `docker/php84/Dockerfile`. * maint/php84 Created `docker/php84/php.ini`. * maint/php84 Updated `test.sh`. * maint/php84 Updated `SECURITY.md`. * maint/php84 Updated `composer.json`. --------- Co-authored-by: david_smith <[email protected]>
- Loading branch information
1 parent
b64b35b
commit cb80904
Showing
8 changed files
with
63 additions
and
4 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
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 |
---|---|---|
|
@@ -6,4 +6,5 @@ composer.lock | |
/.phpunit.cache/ | ||
/vendor-php81/ | ||
/vendor-php82/ | ||
/vendor-php83/ | ||
/vendor-php83/ | ||
/vendor-php84/ |
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 |
---|---|---|
|
@@ -7,6 +7,13 @@ | |
"data-model-helper" | ||
], | ||
"homepage": "https://github.com/zero-to-prod/data-model-helper", | ||
"support": { | ||
"email": "[email protected]", | ||
"issues": "https://github.com/zero-to-prod/data-model-helper/issues", | ||
"source": "https://github.com/zero-to-prod/data-model", | ||
"docs": "https://zero-to-prod.github.io/data-model-helper/", | ||
"security": "https://github.com/zero-to-prod/data-model-helper/blob/main/SECURITY.md" | ||
}, | ||
"license": "MIT", | ||
"readme": "./README.md", | ||
"authors": [ | ||
|
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,23 @@ | ||
FROM php:8.4-cli AS base | ||
|
||
WORKDIR /app | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
git \ | ||
unzip \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
FROM base AS composer | ||
|
||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | ||
|
||
FROM base AS debug | ||
|
||
RUN pecl channel-update pecl.php.net && \ | ||
pecl install xdebug && \ | ||
docker-php-ext-enable xdebug && \ | ||
echo "xdebug.mode=coverage" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini | ||
|
||
WORKDIR /app | ||
|
||
CMD ["bash"] |
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,2 @@ | ||
zend_extension=xdebug.so | ||
xdebug.mode=coverage |
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