Download the PHP package clearlyphp/targz without Composer

On this page you can find all versions of the php package clearlyphp/targz. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package targz

Clearly PHP TarGZ Creation tool

After discovering that PharData has a known memory leak, and is not recommended to be used at all, we needed a standard way of creating TarGz's that will be simple and portable.

This uses the fantastic code from splitbrain/php-archive and is simply a wrapper around it.

Installation

composer require clearlyphp/targz

Usage

The API is extremely simple, and there is 100% test code coverage so you can read them for detailed examples

use ClearlyPHP\Tools\TarGz;
$output = "/tmp/output.tar.gz";
$t = new TarGz($output);
$t->addSrcDir("/var/log");
$t->create();

You can configure if the directory name is included, and if it recurses into subfolders with the second and third params:

TarGz::addSrcDir(string $srcdir, bool $includedirname = true, bool $recurse = true)

Extending

If you want to extend this class, (ie, to add filters) simply modify TarGz::$files before calling create()

About Clearly PHP

Clearly PHP is a collection of useful tools that ClearlyIP use, and publish to the world.

ClearlyIP consists of most of the previous FreePBX developers, and we are one of the leaders in Open Source telephony, along with being active members of the Open Source community! If you're looking for anything from custom VoIP development, to wholesale high-volume SIP trunking, we can help you out.

If you're interested in more of our open source code, here's some links to our personal github pages


All versions of targz with dependencies

PHP Build Version
Package Version
Requires splitbrain/php-archive Version ^1.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package clearlyphp/targz contains the following files

Loading the files please wait ....