diff options
author | Marcus Boerger <helly@php.net> | 2007-05-14 17:20:10 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2007-05-14 17:20:10 +0000 |
commit | 85a9934c0cf581ee3966f2e41b327c531ba8b0a6 (patch) | |
tree | f46260dc35e25237681e213425dd2879de396c63 | |
parent | ca550a5174e5e53778068f21c55952e7570f7be5 (diff) | |
download | php-git-85a9934c0cf581ee3966f2e41b327c531ba8b0a6.tar.gz |
- Update
-rw-r--r-- | ext/phar/TODO | 7 | ||||
-rw-r--r-- | ext/phar/package.php | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ext/phar/TODO b/ext/phar/TODO index 1a96dc2d8c..930e2cad2b 100644 --- a/ext/phar/TODO +++ b/ext/phar/TODO @@ -43,10 +43,15 @@ Version 1.1.0 Version 1.2.0 + * add PharFileInfo::hasMetadata(), PharFileInfo::delMetadata() [Marcus] + * fix Phar::CanWrite() [Marcus] + * add preliminary phar command (phar.php) [Marcus] + * add phar command (phar.phar) [Marcus] + * list all available signature methods * ability to have Phar object return file class as offsetGet() result * ability to store empty directories * [optional] Phar->rollback() to abort a write transaction - * implement GPG signing + * implement PPG signing * ability to match files containing a metadata key opendir('phar://a.phar/?mime-type=image/jpeg') or foreach ($p->match('mime-type', 'image/jpeg') as $file) * Phar::copy($from, $to); diff --git a/ext/phar/package.php b/ext/phar/package.php index 33626a408d..9bd8301f1b 100644 --- a/ext/phar/package.php +++ b/ext/phar/package.php @@ -1,6 +1,7 @@ <?php $notes = ' + * add PharFileInfo::hasMetadata(), PharFileInfo::delMetadata() [Marcus] * fix Phar::CanWrite() [Marcus] * add preliminary phar command (phar.php) [Marcus] * add phar command (phar.phar) [Marcus] |