Thanks for your work. I found your various packages very helpful. I'm going to integrate the flysystem for S3 cloud in my Symfony4 application. And after quick research and reading your installation documentation I did steps like those:
composer require league/flysystem-bundle
composer require league/flysystem-aws-s3-v3
Added content into config/packages/flysystem.yaml
(hope steps are fine)
And I got the error: There is no extension able to load the configuration for "flysystem" (in config/packages/flysystem.yaml).
I understand, it because I didn't register your bundle (didn't update AppKernel.php or list of bundles). But I didn't find anything about BundleInterface in the vendor/league directory. What should I register? I'm just going through steps from your documentation. It seems something is missed there.
So, my questions:
Are my steps correct?
Should I use both packages (flysystem-bundle and flysystem-aws-s3-v3)?
Should I add OneupFlysystemBundle package too?
Should I register a bundle in my AppKernel.php file and how?
Hello guys,
Thanks for your work. I found your various packages very helpful. I'm going to integrate the flysystem for S3 cloud in my Symfony4 application. And after quick research and reading your installation documentation I did steps like those:
composer require league/flysystem-bundle
composer require league/flysystem-aws-s3-v3
config/packages/flysystem.yaml
(hope steps are fine)And I got the error:
There is no extension able to load the configuration for "flysystem" (in config/packages/flysystem.yaml).
I understand, it because I didn't register your bundle (didn't update AppKernel.php or list of bundles). But I didn't find anything about
BundleInterface
in thevendor/league
directory. What should I register? I'm just going through steps from your documentation. It seems something is missed there.So, my questions:
flysystem-bundle
andflysystem-aws-s3-v3
)?OneupFlysystemBundle
package too?Thanks in advance.