Update Travis config

The problem when the project uses symfony/framework-bundle.
composer require --ignore-platform-reqs install  psr/cache 2.0, his support only PHP 8, but in Travis use PHP 7.4.
1) Remove --ignore-platform-reqs 
or 
2) Use in build PHP 8.0

PHP 8.9 now many libraries does not use this version, because I think good idea remove --ignore-platform-reqs
This commit is contained in:
Yozhef
2021-05-12 11:08:29 +03:00
committed by GitHub
parent 1af11a809a
commit 9a3b23278a
+1 -1
View File
@@ -32,7 +32,7 @@ install:
before_script:
- |
install_package() {
composer require --ignore-platform-reqs $@;
composer require $@;
EXIT_CODE=$?;
MESSAGE="";