vendor | |
composer.phar | |
composer.lock |
language: php | |
php: | |
- 5.3 | |
- 5.4 | |
before_script: | |
- wget http://getcomposer.org/composer.phar | |
- php composer.phar install |
<?php | |
if (!@include __DIR__ . '/../vendor/.composer/autoload.php') { | |
die(<<<'EOT' | |
You must set up the project dependencies, run the following commands: | |
wget http://getcomposer.org/composer.phar | |
php composer.phar install | |
EOT | |
); | |
} |
$ phpunit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment