From 6139a61ff0c27e828d88c2c2c84392efd77f5153 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sat, 7 Sep 2013 12:56:49 +0200 Subject: [PATCH] New Build process - Switch from Phing to Ant - Remove PEAR packaging - Add Composer archiving --- build.properties | 10 +-- build.xml | 199 ++++++++++++++++++++++------------------------- composer.json | 5 +- 3 files changed, 98 insertions(+), 116 deletions(-) diff --git a/build.properties b/build.properties index 37c834c0e..4b4c921a5 100644 --- a/build.properties +++ b/build.properties @@ -1,11 +1,3 @@ -# Project Name -project.name=DoctrineORM - -# Dependency minimum versions -dependencies.common=2.2.0beta1 -dependencies.dbal=2.2.0beta1 -dependencies.sfconsole=2.0.0 - # Version class and file -project.version_class = Doctrine\ORM\Version +project.version_class = Doctrine\\ORM\\Version project.version_file = lib/Doctrine/ORM/Version.php diff --git a/build.xml b/build.xml index 890ed05bc..26132d19c 100644 --- a/build.xml +++ b/build.xml @@ -1,114 +1,101 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - DoctrineORM - Doctrine Object Relational Mapper - pear.doctrine-project.org - The Doctrine ORM package is the primary package containing the object relational mapper. - - - - - LGPL - - - - - - - - - - - - - script - Doctrine/Common/ - Doctrine/DBAL/ - Symfony/Component/Yaml/ - Symfony/Component/Console/ - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/composer.json b/composer.json index 8805d54a3..cce0c15b0 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,10 @@ "bin": ["bin/doctrine", "bin/doctrine.php"], "extra": { "branch-alias": { - "dev-master": "2.4.x-dev" + "dev-master": "2.5.x-dev" } + }, + "archive": { + "exclude": ["!vendor", "tests", "*phpunit.xml", ".travis.yml", "build.xml", "build.properties", "composer.phar", "vendor/satooshi", "lib/vendor"] } }