php-translation / flysystem-adapter
Adapter for flysystem.
0.2.1
2017-08-20 08:42 UTC
Requires
- php: ^5.5 || ^7.0
- league/flysystem: ^1.0
- php-translation/common: ^0.2
- php-translation/symfony-storage: ^0.3.2
- symfony/translation: ^2.7 || ^3.0
Requires (Dev)
- nyholm/symfony-bundle-test: ^1.2
- phpunit/phpunit: ^4.8.36 || ^5.5 || ^6.2
This package is auto-updated.
Last update: 2024-10-25 06:34:17 UTC
README
This is an PHP-translation adapter for Flysystem.
Install
composer require php-translation/flysystem-adapter
Symfony bundle
If you want to use the Symfony bundle you may activate it in kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Translation\PlatformAdapter\Flysystem\Bridge\Symfony\TranslationAdapterFlysystemBundle(),
);
}
Configure Flysystem adapters like
# /app/config/config.yml translation_adapter_flysystem: filesystems: local: flysystem_service: 'local.service_id' path: 'path/to/trans' foobar: flysystem_service: 'foobar.service_id' path: 'path/to/trans'
This will produce two services named php_translation.adapter.flysystem.local
and php_translation.adapter.flysystem.foobar
that could be used in the configuration for
the Translation Bundle.
Documentation
Read our documentation at http://php-translation.readthedocs.io.
Contribute
Do you want to make a change? Pull requests are welcome.