Skip to content

Commit

Permalink
Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
raulfraile committed Dec 14, 2014
1 parent 0fd6a5d commit 11ce9b0
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Distill extracts files from compressed archives.

Features:

* Extract files from `bz2`, `cab`, `epub`, `gz`, `phar`, `rar`, `tar`, `tar.bz2`, `tar.gz`, `tar.xz`, `7z`, `xz` and `zip` archives.
* Extract files from `ar`, `bz2`, `cab`, `chm`, `cpio`, `deb`, `dmg`, `epub`, `gz`, `phar`, `rar`, `shar`, `tar`, `tar.bz2`, `tar.gz`, `tar.xz`, `wim`, `7z`, `xz`, `Z` and `zip` archives.
* Different decompression methods under the hood: PHP extensions, command line binaries, third-party libraries and even fallback methods in plain PHP.
* Strategy to choose the right file in case there are more than one available format. Strategies can be
based on minimizing bandwidth or optimizing decompression speed.
Expand Down Expand Up @@ -45,22 +45,6 @@ $distill->extract(__DIR__ . '/../tests/files/file_ok.zip', __DIR__ . '/extract')

## Formats

### Format support

* `bz2`: `bzip2` unix command and `7z` unix command.
* `cab`: `7z` unix command.
* `epub`: `zip` unix command.
* `gz`: `gzip` unix command and `7z` unix command.
* `phar`: `PHAR` extension.
* `rar`: `unrar` unix command, `7z` unix command, and `rar` extension.
* `tar`: `tar` unix command, `7z` unix command, `Archive_Tar` package and `PHAR` extension.
* `tar.bz2`: `tar` unix command, `Archive_Tar` package and `PHAR` extension.
* `tar.gz`: `tar` unix command, `Archive_Tar` package and `PHAR` extension.
* `tar.xz`: `tar` unix command.
* `7z`: `7z` unix command.
* `xz`: `xz` unix command and `7z` unix command.
* `zip`: `tar` unix command, `7z` unix command and `zip` extension.

## Strategies

Distill allows to choose one format in case there are many available. For example, it can be
Expand Down

0 comments on commit 11ce9b0

Please sign in to comment.