Created
November 15, 2011 12:26
-
-
Save henrikbjorn/1366962 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vendor | |
composer.phar | |
composer.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: php | |
php: | |
- 5.3 | |
- 5.4 | |
before_script: | |
- wget http://getcomposer.org/composer.phar | |
- php composer.phar install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 | |
); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ phpunit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment