WP File Manager
Current Path:
/
home
/
itutorethiopia
/
public_html
/
vendor
/
doctrine
/
instantiator
/
Name
Action
..
.gitignore
Edit
.scrutinizer.yml
Edit
.travis.install.sh
Edit
.travis.yml
Edit
CONTRIBUTING.md
Edit
LICENSE
Edit
README.md
Edit
composer.json
Edit
phpmd.xml.dist
Edit
phpunit.xml.dist
Edit
src
tests
Editing: .travis.install.sh
#!/bin/sh set -x if [ "$TRAVIS_PHP_VERSION" = 'hhvm' ] || [ "$TRAVIS_PHP_VERSION" = 'hhvm-nightly' ] ; then curl -sS https://getcomposer.org/installer > composer-installer.php hhvm composer-installer.php hhvm -v ResourceLimit.SocketDefaultTimeout=30 -v Http.SlowQueryThreshold=30000 composer.phar update --prefer-source elif [ "$TRAVIS_PHP_VERSION" = '5.3.3' ] ; then composer self-update composer update --prefer-source --no-dev composer dump-autoload else composer self-update composer update --prefer-source fi