Skip to content

Commit

Permalink
Fix issue in the CI (leomarquine#48)
Browse files Browse the repository at this point in the history
* Fix issue in the CI

* updates changelog
  • Loading branch information
ecourtial authored Nov 9, 2020
1 parent 5b8a160 commit 275be54
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: composer
command: |
if [[ ! -f vendor/autoload.php ]]; then
curl https://getcomposer.org/composer-stable.phar --location --silent --output /usr/bin/composer; \
curl https://getcomposer.org/composer-1.phar --location --silent --output /usr/bin/composer; \
chmod +x /usr/bin/composer; \
composer install --no-progress --no-interaction; \
fi
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
name: composer
command: |
if [[ ! -f vendor/autoload.php ]]; then
curl https://getcomposer.org/composer-stable.phar --location --silent --output /usr/bin/composer; \
curl https://getcomposer.org/composer-1.phar --location --silent --output /usr/bin/composer; \
chmod +x /usr/bin/composer; \
composer install --no-progress --no-interaction; \
fi
Expand Down
7 changes: 7 additions & 0 deletions changelog.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.2.1

**Miscellaneous**
* Fix CI: utilization of the library with PHP 7.2 and 7.3 requires composer 1.x while an utilization with PHP 7.4
can work with Composer 2. This requirement comes from the _ocramius/package-versions_ package, a dependency of
_infection/infection_. This limitation should be removed in the next release with dropping the support of < PHP 7.4.

## 1.2

**New features**
Expand Down

0 comments on commit 275be54

Please sign in to comment.