Skip to content
This repository has been archived by the owner on Dec 31, 2022. It is now read-only.

Update cimg/php Docker tag to v7.4 #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ version: 2
jobs:
php71:
docker:
- image: cimg/php:7.1
- image: cimg/php:7.4
steps:
- checkout
- run: php -v
- run: composer install --no-interaction
- run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text
php72:
docker:
- image: cimg/php:7.2
- image: cimg/php:7.4
steps:
- checkout
- run: php -v
- run: composer install --no-interaction
- run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text
php73:
docker:
- image: cimg/php:7.3
- image: cimg/php:7.4
steps:
- checkout
- run: php -v
Expand Down