vendor/doctrine-migrations/package.php
author cavaliet
Mon, 20 Feb 2012 11:51:04 +0100
changeset 68 76ae0d76a933
parent 39 03b14b0fe101
permissions -rw-r--r--
Close span tag

<?php

/**
 * Phing alternative to packaging the PHAR:
 *   $ php package.php
 *
 * @author Eric Clemmons <eric@smarterspam.com>
 */

$buildDir = realpath(dirname(__FILE__)) . '/build';

$pharName = "$buildDir/doctrine-migrations.phar";

if (!file_exists($buildDir)) {
    mkdir($buildDir);
}

if (file_exists($pharName)) {
    unlink($pharName);
}

$p = new Phar($pharName);
$p->CompressFiles(Phar::GZ);
$p->setSignatureAlgorithm(Phar::SHA1);

$p->startBuffering();

$dirs = array(
    './lib'                                 =>  '/Doctrine\/DBAL\/Migrations/',
    './lib/vendor/doctrine-dbal/lib'        =>  '/Doctrine/',
    './lib/vendor/doctrine-common/lib'      =>  '/Doctrine/',
    './lib/vendor'                          =>  '/Symfony/'
);

foreach ($dirs as $dir => $filter) {
    $p->buildFromDirectory($dir, $filter);
}

$p->stopBuffering();

$p->setStub(file_get_contents('phar-cli-stub.php'));