compile 315 B

1234567891011121314
  1. #!/usr/bin/env php
  2. <?php
  3. if (!@include __DIR__.'/../vendor/.composer/autoload.php') {
  4. die('You must set up the project dependencies, run the following commands:
  5. wget http://getcomposer.org/composer.phar
  6. php composer.phar install
  7. ');
  8. }
  9. use Composer\Compiler;
  10. $compiler = new Compiler();
  11. $compiler->compile();