Bump PHP version to 7.4 (from 7.2)

This commit is contained in:
Meritoo
2022-09-10 13:02:02 +02:00
parent 41ef088ffe
commit bbc5f6a43d
2 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@
} }
], ],
"require": { "require": {
"php": "^7.2", "php": "^7.4",
"ext-dom": "*", "ext-dom": "*",
"ext-fileinfo": "*", "ext-fileinfo": "*",
"ext-intl": "*", "ext-intl": "*",

View File

@@ -5,7 +5,7 @@ services:
# Required to run project # Required to run project
# #
php: php:
image: meritoo/php image: meritoo/php:7.4
container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-php container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-php
entrypoint: php entrypoint: php
command: -S 0.0.0.0:9999 command: -S 0.0.0.0:9999
@@ -14,7 +14,7 @@ services:
volumes: volumes:
- .:/var/www/application:cached - .:/var/www/application:cached
composer: composer:
image: meritoo/php image: meritoo/php:7.4
container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-composer container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-composer
entrypoint: php -d memory_limit=-1 /usr/local/bin/composer entrypoint: php -d memory_limit=-1 /usr/local/bin/composer
volumes: volumes:
@@ -23,7 +23,7 @@ services:
# Required to run PHPUnit's tests # Required to run PHPUnit's tests
# #
phpunit: phpunit:
image: meritoo/php image: meritoo/php:7.4
container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-phpunit container_name: ${DOCKER_CONTAINER_OWNER}-${DOCKER_CONTAINER_PROJECT}-phpunit
entrypoint: ./vendor/bin/phpunit entrypoint: ./vendor/bin/phpunit
command: --version command: --version