Browse Source

Merge pull request #14758 from cakephp/3.x-xcache-url

[3.x] Update Xcache URL
Mark Story 5 years ago
parent
commit
d3220bd97f
2 changed files with 3 additions and 3 deletions
  1. 2 2
      .travis.yml
  2. 1 1
      composer.json

+ 2 - 2
.travis.yml

@@ -66,8 +66,8 @@ before_install:
   - if [[ ${TRAVIS_PHP_VERSION:0:1} == "5" ]] ; then echo "yes" | pecl install apcu-4.0.11 || true; fi
   - |
       if [[ ${TRAVIS_PHP_VERSION:0:1} == "5" && $DB = 'mysql' ]]; then
-        wget http://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz
-        tar xf xcache-3.2.0.tar.gz
+        wget https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/xcache/3.2.0-1build1/xcache_3.2.0.orig.tar.gz
+        tar xf xcache_3.2.0.orig.tar.gz
         pushd xcache-3.2.0
         phpize; ./configure
         make

+ 1 - 1
composer.json

@@ -103,6 +103,6 @@
         "test": "phpunit",
         "test-coverage": "phpunit --coverage-clover=clover.xml",
         "phpstan": "phpstan analyse -c phpstan.neon -l 2 src/",
-        "phpstan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan-shim:^0.11 && mv composer.backup composer.json"
+        "phpstan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan-shim:^0.11 --no-update && composer update && mv composer.backup composer.json"
     }
 }