neutron/silex-filesystem-provider

A Silex Provider for Symfony Filesystem component


Keywords
silex, filesystem, temporary-filesystem
License
MIT

Documentation

#Silex Filesystem Service Provider

Build Status

This is a Silex Service Provider for Symfony Filesystem Component.

Installation

Add it using composer :

{
    "require": {
        "neutron/silex-filesystem-provider": "dev-master"
    }
}

Usage

use Silex\Application;
use Neutron\Silex\Provider\FilesystemServiceProvider;

$app = new Application();
// Register the filesystem
$app->register(new FilesystemServiceProvider());

// Just use it as any Silex service
if (!$app['filesystem']->exists('any-absolute-or-relative-path...')) {
	throw new \Namespace\PathNotFoundCustomException();
}

Information

Read more information about the Symfony Filesystem Component

License

This is released under the MIT license