laasti / flysystem-provider
A league/container v2 service provider for Flysystem.
v2.0.1
2016-04-21 12:16 UTC
Requires
- league/container: ^2.0.3
- league/flysystem: ~1.0
This package is auto-updated.
Last update: 2024-10-20 23:46:25 UTC
README
Installation
composer require laasti/flysystem-provider
Usage
$container = new League\Container\Container; $container->addServiceProvider('Laasti\FlysystemProvider\FlysystemProvider'); //The first defined adapter is used as the default for League\Flysystem\FilesystemInterface $container->add('config.flysystem', [ //the first item in array is the adapter class, the second is the adapter's constructor parameters 'upload' => ['League\Flysystem\Adapter\Local', ['your-uploads-directory']], 'temp' => ['League\Flysystem\Adapter\Local', ['your-temp-directory']], //see League/Flysystem's documentation for more adapters ]); $manager = $container->get('League\Flysystem\MountManager'); $manager->read('upload://path-to-file.txt); //or get the default filesystem $filesystem = $container->get('League\Flysystem\FilesystemInterface'); //or get a filesystem by its name from the container $tempFiles = $container->get('flysystem.filesystem.temp'); //or an adapter $tempAdapter = $container->get('flysystem.adapter.temp');
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
History
See Github's releases or tags
Credits
Author: Sonia Marquette (@nebulousGirl)
License
Released under the MIT License. See LICENSE.txt file.