選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- #!/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
|