]> granicus.if.org Git - php/commitdiff
update package.xml
authorGreg Beaver <cellog@php.net>
Wed, 9 Jan 2008 08:49:58 +0000 (08:49 +0000)
committerGreg Beaver <cellog@php.net>
Wed, 9 Jan 2008 08:49:58 +0000 (08:49 +0000)
ext/phar/package.php
ext/phar/package.xml

index 321f49e3709e8f81aa0e45f24104d2f6c9cdcd9d..2eff70381a5a3add8bd9a8191cf22f60fb95f534 100644 (file)
@@ -10,6 +10,7 @@ Major feature functionality release
  * paths with . and .. work (phar://blah.phar/a/../b.php => phar://blah.phar/b.php) [Greg]
  * add support for mkdir()/rmdir() and support for empty directories to phar file format [Greg]
  * add option to compress the entire phar file for phar/tar file format [Greg]
+ * implement Phar::isCompressed() returning 0, Phar::GZ or Phar::BZ2 [Greg]
  * implement Phar::copy(string $from, string $to) [Greg]
  * implement Phar::buildFromIterator(Iterator $it[, string $base_directory]) [Greg]
  * add mapping of include/require from within a phar to location within phar [Greg]
index ab849f1ee57afdd9b48df73390d132e6522ed674..0b59a0d685f019f68a156196c57fb10907110446 100644 (file)
@@ -29,8 +29,8 @@ avaiable then SHA-256 and SHA-512 signatures are supported as well.</description
   <email>helly@php.net</email>
   <active>yes</active>
  </lead>
- <date>2008-01-08</date>
- <time>21:53:23</time>
+ <date>2008-01-09</date>
+ <time>02:50:07</time>
  <version>
   <release>1.3.0</release>
   <api>1.1.0</api>
@@ -50,6 +50,8 @@ Major feature functionality release
  * include/fopen with include_path all work unmodified within a phar [Greg]
  * paths with . and .. work (phar://blah.phar/a/../b.php =&gt; phar://blah.phar/b.php) [Greg]
  * add support for mkdir()/rmdir() and support for empty directories to phar file format [Greg]
+ * add option to compress the entire phar file for phar/tar file format [Greg]
+ * implement Phar::isCompressed() returning 0, Phar::GZ or Phar::BZ2 [Greg]
  * implement Phar::copy(string $from, string $to) [Greg]
  * implement Phar::buildFromIterator(Iterator $it[, string $base_directory]) [Greg]
  * add mapping of include/require from within a phar to location within phar [Greg]
@@ -209,6 +211,8 @@ Major feature functionality release
      <file name="tar_002.phpt" role="test" />
      <file name="tar_003.phpt" role="test" />
      <file name="tar_004.phpt" role="test" />
+     <file name="tar_bz2.phpt" role="test" />
+     <file name="tar_gzip.phpt" role="test" />
     </dir> <!-- /tests/tar -->
     <dir name="zip">
      <file name="033.phpt" role="test" />
@@ -408,6 +412,7 @@ Major feature functionality release
     <file name="phar_buildfromiterator7.phpt" role="test" />
     <file name="phar_buildfromiterator8.phpt" role="test" />
     <file name="phar_buildfromiterator9.phpt" role="test" />
+    <file name="phar_bz2.phpt" role="test" />
     <file name="phar_commitwrite.phpt" role="test" />
     <file name="phar_copy.phpt" role="test" />
     <file name="phar_create_in_cwd.phpt" role="test" />
@@ -419,6 +424,7 @@ Major feature functionality release
     <file name="phar_get_supportedcomp4.phpt" role="test" />
     <file name="phar_get_suppoted_signatures_001.phpt" role="test" />
     <file name="phar_get_suppoted_signatures_002.phpt" role="test" />
+    <file name="phar_gzip.phpt" role="test" />
     <file name="phar_magic.phpt" role="test" />
     <file name="phar_metadata_read.phpt" role="test" />
     <file name="phar_metadata_write.phpt" role="test" />
@@ -530,7 +536,7 @@ Major feature functionality release
     <release>stable</release>
     <api>stable</api>
    </stability>
-   <date>2008-01-08</date>
+   <date>2008-01-09</date>
    <license uri="http://www.php.net/license">PHP License</license>
    <notes>
 
@@ -542,6 +548,8 @@ Major feature functionality release
  * include/fopen with include_path all work unmodified within a phar [Greg]
  * paths with . and .. work (phar://blah.phar/a/../b.php =&gt; phar://blah.phar/b.php) [Greg]
  * add support for mkdir()/rmdir() and support for empty directories to phar file format [Greg]
+ * add option to compress the entire phar file for phar/tar file format [Greg]
+ * implement Phar::isCompressed() returning 0, Phar::GZ or Phar::BZ2 [Greg]
  * implement Phar::copy(string $from, string $to) [Greg]
  * implement Phar::buildFromIterator(Iterator $it[, string $base_directory]) [Greg]
  * add mapping of include/require from within a phar to location within phar [Greg]