|
11 år sedan | |
---|---|---|
.. | ||
src | 11 år sedan | |
tests | 11 år sedan | |
.travis.yml | 11 år sedan | |
LICENSE | 11 år sedan | |
README.md | 11 år sedan | |
composer.json | 11 år sedan | |
composer.lock | 11 år sedan | |
phpunit.xml.dist | 11 år sedan |
#Silex Filesystem Service Provider
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();
}
###Informations Read more informations about the Symfony2 Filesystem Component
##License
This is released under the MIT license