Skip to content

Commit 1f43bda

Browse files
committed
composer update
1 parent acdc886 commit 1f43bda

File tree

4 files changed

+678
-313
lines changed

4 files changed

+678
-313
lines changed

Diff for: Makefile

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
DOCKER_RUN = docker-compose run -e PHP_XDEBUG_ENABLED=0 --rm fpm
2-
DOCKER_RUN_XDEBUG = docker-compose run -e PHP_XDEBUG_ENABLED=1 --rm fpm
1+
DOCKER_RUN = docker-compose run --rm fpm
32

43
.env.local: .env
54
cp -n .env .env.local
@@ -20,4 +19,4 @@ tests:
2019

2120
.PHONY: coverage
2221
coverage:
23-
$(DOCKER_RUN_XDEBUG) vendor/bin/phpunit --coverage-html coverage
22+
PHP_XDEBUG_ENABLED=1 $(DOCKER_RUN) vendor/bin/phpunit --coverage-html coverage

Diff for: composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"require-dev": {
1919
"ext-sockets": "*",
2020
"phpunit/phpunit": "^8.5",
21-
"friendsofphp/php-cs-fixer": "@stable",
22-
"symfony/dotenv": "@stable",
21+
"friendsofphp/php-cs-fixer": "^2.16",
22+
"symfony/dotenv": "^5.0",
2323
"donatj/mock-webserver": "^2.1"
2424
},
2525
"autoload": {

0 commit comments

Comments
 (0)