Archive
8 months ago
scripts
2 years ago
README.md
2 years ago
SECURITY.md
2 years ago
sync-php4
2 years ago
README.md
35 lines
| 1 | Archive_Tar |
| 2 | ========== |
| 3 | |
| 4 |  |
| 5 | |
| 6 | This package provides handling of tar files in PHP. |
| 7 | It supports creating, listing, extracting and adding to tar files. |
| 8 | Gzip support is available if PHP has the zlib extension built-in or |
| 9 | loaded. Bz2 compression is also supported with the bz2 extension loaded. |
| 10 | Also Lzma2 compressed archives are supported with xz extension. |
| 11 | |
| 12 | This package is hosted at http://pear.php.net/package/Archive_Tar |
| 13 | |
| 14 | Please report all new issues via the PEAR bug tracker. |
| 15 | |
| 16 | Pull requests are welcome! |
| 17 | |
| 18 | |
| 19 | Testing, building |
| 20 | ----------------- |
| 21 | |
| 22 | To test, run either |
| 23 | $ phpunit tests/ |
| 24 | or |
| 25 | $ pear run-tests -r |
| 26 | |
| 27 | To build, simply |
| 28 | $ pear package |
| 29 | |
| 30 | To install from scratch |
| 31 | $ pear install package.xml |
| 32 | |
| 33 | To upgrade |
| 34 | $ pear upgrade -f package.xml |
| 35 |