Update the Injector package.xml using the Packaging script.
authorGunnar Wrobel <p@rdus.de>
Thu, 11 Feb 2010 14:01:44 +0000 (15:01 +0100)
committerGunnar Wrobel <p@rdus.de>
Thu, 11 Feb 2010 14:01:44 +0000 (15:01 +0100)
framework/Injector/package.xml

index 882f7ff..06337f4 100644 (file)
@@ -1,8 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<package packagerversion="1.4.9" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
-http://pear.php.net/dtd/tasks-1.0.xsd
-http://pear.php.net/dtd/package-2.0
-http://pear.php.net/dtd/package-2.0.xsd">
+<package packagerversion="1.9.0" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
  <name>Injector</name>
  <channel>pear.horde.org</channel>
  <summary>Horde dependency injection container</summary>
@@ -25,7 +22,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
   <email>chuck@horde.org</email>
   <active>yes</active>
  </lead>
- <date>2009-09-20</date>
+ <date>2010-02-11</date>
+ <time>15:00:18</time>
  <version>
   <release>0.1.0</release>
   <api>0.1.0</api>
@@ -36,10 +34,27 @@ http://pear.php.net/dtd/package-2.0.xsd">
  </stability>
  <license uri="http://opensource.org/licenses/bsd-license.php">BSD</license>
  <notes>
-   * Initial release, contributed by Blue State Digital
+* Initial release, contributed by Blue State Digital
  </notes>
  <contents>
-  <dir name="/">
+  <dir baseinstalldir="/" name="/">
+   <dir name="doc">
+    <dir name="Horde">
+     <dir name="Injector">
+      <file name="Readme.html" role="doc" />
+     </dir> <!-- /doc/Horde/Injector -->
+    </dir> <!-- /doc/Horde -->
+   </dir> <!-- /doc -->
+   <dir name="examples">
+    <dir name="Horde">
+     <dir name="Injector">
+      <file name="binder.php" role="php" />
+      <file name="factory.php" role="php" />
+      <file name="implementation.php" role="php" />
+      <file name="setget.php" role="php" />
+     </dir> <!-- /examples/Horde/Injector -->
+    </dir> <!-- /examples/Horde -->
+   </dir> <!-- /examples -->
    <dir name="lib">
     <dir name="Horde">
      <dir name="Injector">
@@ -55,6 +70,20 @@ http://pear.php.net/dtd/package-2.0.xsd">
      <file name="Injector.php" role="php" />
     </dir> <!-- /lib/Horde -->
    </dir> <!-- /lib -->
+   <dir name="test">
+    <dir name="Horde">
+     <dir name="Injector">
+      <dir name="Binder">
+       <file name="FactoryTest.php" role="test" />
+       <file name="ImplementationTest.php" role="test" />
+      </dir> <!-- /test/Horde/Injector/Binder -->
+      <file name="AllTests.php" role="test" />
+      <file name="BinderTest.php" role="test" />
+      <file name="InjectorTest.php" role="test" />
+      <file name="phpunit.xml" role="test" />
+     </dir> <!-- /test/Horde/Injector -->
+    </dir> <!-- /test/Horde -->
+   </dir> <!-- /test -->
   </dir> <!-- / -->
  </contents>
  <dependencies>
@@ -69,13 +98,37 @@ http://pear.php.net/dtd/package-2.0.xsd">
  </dependencies>
  <phprelease>
   <filelist>
-   <install name="lib/Horde/Injector/Binder/Factory.php" as="Horde/Injector/Binder/Factory.php" />
-   <install name="lib/Horde/Injector/Binder/Implementation.php" as="Horde/Injector/Binder/Implementation.php" />
-   <install name="lib/Horde/Injector/Binder.php" as="Horde/Injector/Binder.php" />
-   <install name="lib/Horde/Injector/Exception.php" as="Horde/Injector/Exception.php" />
-   <install name="lib/Horde/Injector/Scope.php" as="Horde/Injector/Scope.php" />
-   <install name="lib/Horde/Injector/TopLevel.php" as="Horde/Injector/TopLevel.php" />
-   <install name="lib/Horde/Injector.php" as="Horde/Injector.php" />
+   <install as="Horde/Injector/Readme.html" name="doc/Horde/Injector/Readme.html" />
+   <install as="Horde/Injector.php" name="lib/Horde/Injector.php" />
+   <install as="Horde/Injector/Binder.php" name="lib/Horde/Injector/Binder.php" />
+   <install as="Horde/Injector/Exception.php" name="lib/Horde/Injector/Exception.php" />
+   <install as="Horde/Injector/Scope.php" name="lib/Horde/Injector/Scope.php" />
+   <install as="Horde/Injector/TopLevel.php" name="lib/Horde/Injector/TopLevel.php" />
+   <install as="Horde/Injector/Binder/Factory.php" name="lib/Horde/Injector/Binder/Factory.php" />
+   <install as="Horde/Injector/Binder/Implementation.php" name="lib/Horde/Injector/Binder/Implementation.php" />
+   <install as="Horde/Injector/AllTests.php" name="test/Horde/Injector/AllTests.php" />
+   <install as="Horde/Injector/BinderTest.php" name="test/Horde/Injector/BinderTest.php" />
+   <install as="Horde/Injector/InjectorTest.php" name="test/Horde/Injector/InjectorTest.php" />
+   <install as="Horde/Injector/phpunit.xml" name="test/Horde/Injector/phpunit.xml" />
+   <install as="Horde/Injector/Binder/FactoryTest.php" name="test/Horde/Injector/Binder/FactoryTest.php" />
+   <install as="Horde/Injector/Binder/ImplementationTest.php" name="test/Horde/Injector/Binder/ImplementationTest.php" />
   </filelist>
  </phprelease>
+ <changelog>
+  <release>
+   <version>
+    <release>0.1.0</release>
+    <api>0.1.0</api>
+   </version>
+   <stability>
+    <release>beta</release>
+    <api>beta</api>
+   </stability>
+   <date>2010-02-11</date>
+   <license uri="http://opensource.org/licenses/bsd-license.php">BSD</license>
+   <notes>
+* Initial release, contributed by Blue State Digital
+   </notes>
+  </release>
+ </changelog>
 </package>