Download the PHP package pendenga/file without Composer

On this page you can find all versions of the php package pendenga/file. 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 file

File Tools

Several tools I use when working with files and directories, particularly when I have a large amount of files to work with. I build most of these when exporting years of data for a customer, which ended up being 165,000+ files in 4000+ directories totaling 140GB+.

Installation

This package is hosted on packagist installable via Composer.

Requirements

Installing Via Composer

Run the following at the command line in your repo:

Or add the following lines to your composer.json file...

and run the following command:

This will set the Pendenga File as a dependency in your project and install it.

When bootstrapping your application, you will need to require 'vendor/autoload.php' in order to setup autoloading.

Tools Available

All logging is done with the Psr\Log\LoggerInterface for compatability with other packages and loggers. In my examples, I'll just use $logger to mean any LoggerInterface.

Batch

Batch will take a large number of directories and consolidate them into subdirectories not to exceed a certain size. The use case was I had 4000+ folders in a single directory, totaling 140GB+ and had uploaded that to Box.com. Box.com didn't allow downloads over 15GB so the customer couldn't download the whole set at once. This script put sets of hundreds of folders into 15 batch folders of less than 10GB each, so they could be downloaded.

ColumnMap

ColumnMap is used by Manifest to map columns in a spreadsheet to values that need to match up. For example if a user-defined manifest spreadsheet has columns (name, size, checksum) or (filename, bytes, md5) those might both be valid and we need to map the columns in the spreadsheet to be able to work with them.

Directory

Directory has some tools that are useful when creating directories and moving files around.

Generate

Generate a bunch of random files. You can configure options for a random number of directories, files in each dir, lines in each file, characters on each line, etc. Optionally, you can create a manifest file of the new files.

Ini

A pretty simple wrapper for the ini file, to help find it in the root directory, even after this package is installed in a different project, and provide one-line, static functions for ini access.

Manifest

Validate files in a directory using a spreadsheet manifest with relative file name and zero or more of the following:

ManifestWriter

Used to create a manifest file when files are being created. You can specify which columns get created, but here are the current options:

Properties

A simple class to abstract some of the checks that are done in the manifest file.

Scan

Abstraction of some PHP file scanning and GLOB tools. Helps in searching for files, getting lists of files and directories.


All versions of file with dependencies

PHP Build Version
Package Version
Requires box/spout Version ^3.1
ext-json Version *
ext-zip Version *
psr/log Version ^1.1
rych/random Version ^0.1.0
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 pendenga/file contains the following files

Loading the files please wait ....