summaryrefslogtreecommitdiff
path: root/bin/compile
blob: a36967e8aa7cbbea3103f71207dbe780a2f6a6d0 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env php
<?php

unlink(getcwd() . '/iac.phar');
#chdir(dirname(__DIR__));
#exec('composer install --no-dev');

$phar = new Phar('iac.phar');
$phar->setStub(Phar::createDefaultStub());
$phar->buildFromDirectory(dirname(__DIR__), '/(src|vendor|index\.php)/');