Testing dependencies
This commit is contained in:
@ -9,6 +9,7 @@ RUN pecl install xdebug-3.1.3 \
|
|||||||
&& docker-php-ext-enable xdebug
|
&& docker-php-ext-enable xdebug
|
||||||
|
|
||||||
COPY ./php-errors.ini /usr/local/etc/php/conf.d/docker-php-errors.ini
|
COPY ./php-errors.ini /usr/local/etc/php/conf.d/docker-php-errors.ini
|
||||||
|
COPY ./php-xdebug.ini /usr/local/etc/php/conf.d/docker-php-xdebug.ini
|
||||||
|
|
||||||
COPY --from=composer /usr/bin/composer /usr/bin/composer
|
COPY --from=composer /usr/bin/composer /usr/bin/composer
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "incoviba/web",
|
"name": "incoviba/web",
|
||||||
|
"version": "2.0.0",
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"require": {
|
"require": {
|
||||||
"berrnd/slim-blade-view": "^1.0",
|
"berrnd/slim-blade-view": "^1.0",
|
||||||
@ -14,8 +15,10 @@
|
|||||||
"slim/slim": "^4.11"
|
"slim/slim": "^4.11"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
|
"fakerphp/faker": "^1.23",
|
||||||
"kint-php/kint": "^5.1",
|
"kint-php/kint": "^5.1",
|
||||||
"phpunit/phpunit": "^10.2"
|
"phpunit/phpunit": "^10.2",
|
||||||
|
"spatie/phpunit-watcher": "^1.23"
|
||||||
},
|
},
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
@ -30,6 +33,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"sort-packages": true
|
"sort-packages": true,
|
||||||
|
"process-timeout": 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
2
php-xdebug.ini
Normal file
2
php-xdebug.ini
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[xdebug]
|
||||||
|
xdebug.mode=coverage
|
Reference in New Issue
Block a user