composer 362 B

123456789101112131415
  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\Console\Application;
  10. // run the command application
  11. $application = new Application();
  12. $application->run();