You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- curl -sS https://getcomposer.org/installer | php -d suhosin.executor.include.whitelist=phar
-
- php -d suhosin.executor.include.whitelist=phar ./composer.phar install
-
- if [ "$1" == "hhvm" ]; then
- rake test:hhvm --trace
- else
- rake test:php --trace
- fi
|