Browse Source

php7.4 zip

jqh 5 years ago
parent
commit
70b09124fa
1 changed files with 5 additions and 0 deletions
  1. 5 0
      .travis.yml

+ 5 - 0
.travis.yml

@@ -18,6 +18,11 @@ services:
   - mysql
 
 install:
+  - wget https://libzip.org/download/libzip-1.6.1.tar.gz
+  - tar -zxvf libzip-1.6.1.tar.gz
+  - cd libzip-1.6.1
+  - ./configure && make && make install
+  - cd ..
   - wget https://pecl.php.net/get/zip-1.18.2.tgz
   - tar -zxvf zip-1.18.2.tgz
   - cd zip-1.18.2 && phpize clean && phpize && ./configure && make clean && make && make install