Download the PHP package bocharsky-bw/file-naming-resolver without Composer

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

FileNamingResolver

A lightweight library which helps to resolve a file/directory naming of uploaded files using various naming strategies.

This library solves only naming things and do nothing with any files or directories directly. If you are looking for some filesystem abstraction layer - looks closer to Gaufrette, symfony/filesystem or Flysystem libraries.

Travis Status HHVM Status Scrutinizer Code Quality Code Coverage Software License Latest Version

SensioLabsInsight

Contents

Requirements

This library is standalone without any dependencies. To use it in your project ensure you correspond to the next requirements:

Installation

The preferred way to install this package is to use Composer:

If you don't use Composer - register this package in your autoloader manually following PSR-4 autoloader standard or simply download this library and require the necessary files directly in your scripts:

Usage

First of all, before using file naming resolver, you should determine which naming strategy to use. You can use different strategies out-of-the-box or easily create your own one by implementing the NamingStrategyInterface interface or extends the AbstractNamingStrategy class which already implemented it for you.

NOTE: In all examples hereinafter the __DIR__ equals to /var/www/html/web.

FileInfo

The FileNamingResolver\FileInfo class extends \SplFileInfo object. For more info check the SplFileInfo. Below shown list of frequently used getters of this class:

Strategy list

AggregateNamingStrategy

This naming strategy allows to use as many naming strategies as you need at once. Its aggregate results. Each new result pathname based on the previous one.

To reverse applying order of strategies pass true as second parameter to the constructor of AggregateNamingStrategy class:

CallbackNamingStrategy

This naming strategy allows create a custom naming logic using custom callbacks.

ContentHashNamingStrategy

The naming behavior of hash naming strategy looks like Twig naming of cached files.

NOTE: Be sure that source file really exist before using ContentHashNamingStrategy otherwise an InvalidArgumentException will be thrown. You probably need to use a isFile() method on FileInfo object to be sure that file exists. It's necessary because this naming strategy try to hash a real file content.

DatetimeNamingStrategy

The naming behavior of datetime naming strategy looks like WordPress naming of uploaded media files.

HashNamingStrategy

The naming behavior of hash naming strategy looks like Twig naming of cached files.

Example

There is a full working example how to upload files with a simple HTML form and built-in PHP functions using FileNamingResolver library.

Contribution

Feel free to submit an Issue or create a Pull Request if you find a bug or just want to propose an improvement suggestion.

In order to propose a new feature, the best way is to submit an Issue and discuss it first.

Move UP


All versions of file-naming-resolver with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3
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 bocharsky-bw/file-naming-resolver contains the following files

Loading the files please wait ....