Skip to content

Instantly share code, notes, and snippets.

@henrikbjorn
Created November 15, 2011 12:26
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henrikbjorn/1366962 to your computer and use it in GitHub Desktop.
Save henrikbjorn/1366962 to your computer and use it in GitHub Desktop.
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
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment