We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0751068 commit c46bd33Copy full SHA for c46bd33
.travis.yml
@@ -58,6 +58,7 @@ matrix:
58
- SYMFONY_PHPUNIT_VERSION=9.5
59
fast_finish: true
60
allow_failures:
61
+ - php: 5.3
62
- php: nightly
63
64
branches:
@@ -69,6 +70,13 @@ cache:
69
70
- $HOME/.composer/cache
71
72
before_install:
73
+ # In September 2021, the Let's encrypt root authority certificate expired,
74
+ # which invalidates Composer's certificates.
75
+ - if [[ $TRAVIS_DIST == 'precise' ]]; then
76
+ wget https://curl.se/ca/cacert.pem -O /tmp/cacert.pem --no-check-certificate;
77
+ echo "openssl.cafile=/tmp/cacert.pem" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
78
+ fi
79
+ # Update Composer to the latest supported version
80
- composer self-update
81
82
install:
0 commit comments