-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3df1daa
commit aaf35f7
Showing
14 changed files
with
131 additions
and
251 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
zend_extension=xdebug | ||
|
||
[xdebug] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
zend_extension=xdebug | ||
|
||
[xdebug] | ||
xdebug.mode=coverage,debug,develop | ||
xdebug.client_host=host.docker.internal |
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,9 +1,10 @@ | ||
/.docker export-ignore | ||
/.github export-ignore | ||
/tests export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.scrutinizer.yml export-ignore | ||
docker-compose.yml export-ignore | ||
phpstan.neon.dist export-ignore | ||
phpunit.xml.dist export-ignore | ||
/.docker export-ignore | ||
/.github export-ignore | ||
/tests export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.scrutinizer.yml export-ignore | ||
docker-compose.ci.yml export-ignore | ||
docker-compose.yml export-ignore | ||
phpstan.neon.dist export-ignore | ||
phpunit.xml.dist 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,3 @@ | |
/vendor | ||
.php-cs-fixer.cache | ||
composer.lock | ||
docker-compose.override.yml |
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,36 @@ | ||
version: '3.8' | ||
|
||
services: | ||
php8.1: | ||
image: ghcr.io/staudenmeir/php:8.1 | ||
working_dir: /var/www/html | ||
networks: | ||
- test | ||
volumes: | ||
- .:/var/www/html:delegated | ||
- ~/.cache/composer/files:/root/.composer/cache/files | ||
php8.2: | ||
image: ghcr.io/staudenmeir/php:8.2 | ||
working_dir: /var/www/html | ||
networks: | ||
- test | ||
volumes: | ||
- .:/var/www/html:delegated | ||
- ~/.cache/composer/files:/root/.composer/cache/files | ||
php8.3: | ||
image: ghcr.io/staudenmeir/php:8.3 | ||
working_dir: /var/www/html | ||
networks: | ||
- test | ||
volumes: | ||
- .:/var/www/html:delegated | ||
- ~/.cache/composer/files:/root/.composer/cache/files | ||
php8.3-xdebug: | ||
image: ghcr.io/staudenmeir/php:8.3 | ||
working_dir: /var/www/html | ||
networks: | ||
- test | ||
volumes: | ||
- .:/var/www/html:delegated | ||
- .docker/xdebug.ci.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini | ||
- ~/.cache/composer/files:/root/.composer/cache/files |
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
Oops, something went wrong.