Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2021 | - | ||||
Archive/ | H | 03-May-2021 | - | 2,505 | 1,644 | |
docs/ | H | 03-May-2022 | - | |||
scripts/ | H | 03-May-2021 | - | 237 | 202 | |
.travis.yml | H A D | 03-May-2021 | 532 | 30 | 29 | |
README.md | H A D | 03-May-2021 | 851 | 35 | 23 | |
composer.json | H A D | 03-May-2021 | 1.3 KiB | 55 | 54 | |
package.xml | H A D | 03-May-2021 | 18.4 KiB | 683 | 681 | |
sync-php4 | H A D | 03-May-2021 | 180 | 7 | 3 |
README.md
1Archive_Tar 2========== 3 4[![Build Status](https://secure.travis-ci.org/pear/Archive_Tar.png?branch=master)](https://travis-ci.org/pear/Archive_Tar) 5 6This package provides handling of tar files in PHP. 7It supports creating, listing, extracting and adding to tar files. 8Gzip support is available if PHP has the zlib extension built-in or 9loaded. Bz2 compression is also supported with the bz2 extension loaded. 10Also Lzma2 compressed archives are supported with xz extension. 11 12This package is hosted at http://pear.php.net/package/Archive_Tar 13 14Please report all new issues via the PEAR bug tracker. 15 16Pull requests are welcome! 17 18 19Testing, building 20----------------- 21 22To test, run either 23$ phpunit tests/ 24 or 25$ pear run-tests -r 26 27To build, simply 28$ pear package 29 30To install from scratch 31$ pear install package.xml 32 33To upgrade 34$ pear upgrade -f package.xml 35