1.0.0 2024-01-16 20:38 UTC

This package is auto-updated.

Last update: 2025-05-16 23:29:03 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'))