Sylius/etc/travis/prepare/prepare-php7-memcached
Adam Elsodaney 8901de630d Create the "etc" directory for environment specific configuration.
With the introduction of AppVeyor continuous integration and
improved setup of Travis, the root directory may start to become
disorganised or cluttered, especially if there are more tools to
be integrated in the future. Moving files for AppVeyor, Travis and
Vagrant into an "etc" directory will help estabish a new location
for similar files.
2015-12-11 12:55:55 +01:00

10 lines
215 B
Bash
Executable file

#!/bin/bash
git clone -b php7 https://github.com/php-memcached-dev/php-memcached.git php-memcached
cd php-memcached
phpize
./configure
make
cp modules/memcached.so `php -i | grep extensions | awk '{ print $5 }'`