wyrihaximus / fly-pie
Flysystem integration plugin for CakePHP 5
Fund package maintenance!
WyriHaximus
Installs: 186 768
Dependents: 0
Suggesters: 0
Security: 0
Stars: 38
Watchers: 4
Forks: 10
Open Issues: 3
Type:cakephp-plugin
Requires
- php: ^8.1
- cakephp/cakephp: ^5.0.0
- league/flysystem: ^3.0
Requires (Dev)
- cakephp/debug_kit: ^5.0.0
- cakephp/plugin-installer: ^2.0.1
- league/flysystem-async-aws-s3: ^3.0
- lorenzo/piping-bag: ^2.0
- phake/phake: 4.*
- phpstan/phpstan: ^1.0
- phpunit/phpunit: ^10.1.0
- ray/di: ^2.2
- squizlabs/php_codesniffer: ~3.7.0
Suggests
- league/flysystem-async-aws-s3: Needed to support the AsyncAwsS3Adapter Factory
- lorenzo/piping-bag: Dependencies Injection Container support
This package is auto-updated.
Last update: 2024-10-16 14:29:57 UTC
README
Lightweight Flysystem wrapper/configuration plugin for CakePHP.
See below for CakePHP V4 core version compatibility matrix.
Installation
To install via Composer, use the command below, it will automatically detect the latest version and bind it with ^
.
composer require wyrihaximus/fly-pie
Bootstrap
Add the following to your config/bootstrap.php
to load the plugin.
Plugin::load('WyriHaximus/FlyPie', ['bootstrap' => true]);
Configuration
Example configuration (for in config/app_local.php
):
/** * FlySystem filesystems */ 'WyriHaximus' => [ 'FlyPie' => [ 's3_thumbnails' => [ 'adapter' => 'Local', 'vars' => [ __DIR__, // Path 'second option', 'third option', ], ], ], ],
At first it's namespaced within WyriHaximus.FlyPie
to make sure it doesn't interfere with any other plugins. Secondly it's an associative array where every key is the alias for a specific plugin configuration. That is s3_thumbnails
in our example. So when you need that filesystem somewhere in your project you can call $this->filesystem('s3_thumbnails');
on the trait.
To enable the filesystem panel in DebugKit add the configuration as shown below:
'DebugKit' => [ 'panels' => ['WyriHaximus/FlyPie.Filesystem'], ],
Configuration keys
adapter
- adapter name or full qualified class name to use for this filesystemvars
- array containing the required settings for FlyPie to build an adapter for you. That is passed directly intonewInstanceArgs
upon adapter creation. (This is required in case you don't use a factory or provide the client.)client
- a prebuild clientfactory
- a callback, array (class instance, methodname), string (static class method or function name or event name) that can be utilized as a factory to build the adapterurl
- Data Source Name. A connection string format that is formed like a URI. See below for examples.
Check out config/config.sample.php
for more details.
Usage
FlyPie comes with the FilesystemsTrait
trait that lets you easily access filesystems. The only method in the trait, filesystem($alias)
, provides access to the adapters you've defined in your configuration.
For example this lists all files in a S3
bucket with thumbnails:
$this->filesystem('s3_thumbnails')->listContents();
For more details on how to use Flysystem, check out its Getting Started section.
Supported Adapters
By default only a few adapters are included. Extra adapters can be added on a per case basis as extra composer packages. For all supported adapters see: https://github.com/thephpleague/flysystem#commonly-used-adapters
Example Data Source Names
CakePHP version compatibility matrix
License
Copyright 2017 Cees-Jan Kiewiet
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.