2011-09-05 08:18:32 +00:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
|
2011-11-04 10:11:06 +00:00
|
|
|
if (!@include __DIR__.'/../vendor/.composer/autoload.php') {
|
|
|
|
die('You must set up the project dependencies, run the following commands:
|
|
|
|
wget http://getcomposer.org/composer.phar
|
|
|
|
php composer.phar install
|
|
|
|
');
|
|
|
|
}
|
2011-09-05 08:18:32 +00:00
|
|
|
|
|
|
|
use Composer\Compiler;
|
|
|
|
|
|
|
|
$compiler = new Compiler();
|
|
|
|
$compiler->compile();
|