1.0.0 2024-01-16 20:38 UTC

This package is auto-updated.

Last update: 2025-04-16 23:24:59 UTC


README

composer require krzysztofzylka/phar

Methods

Retrieves a list of files contained in the Phar archive

$phar = new \Krzysztofzylka\Phar\Phar('/path/to/file.tar.gz')
var_dump($phar->getContentList())

Retrieves the content of a file from the Phar archive

$phar = new \Krzysztofzylka\Phar\Phar('/path/to/file.tar.gz')
var_dump($phar->getFileContent('path/to/file/in/phar'))