-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added missed "options" argument for AwsAdapterDefinitionBuilder #18
Conversation
League\Flysystem\AwsS3v3\AwsS3Adapter supports 4th argument named "options", but it's missed in this package. With the proposed changes I can now describe AWS storage as the following: ``` flysystem: storages: aws.storage: adapter: 'aws' options: client: 'aws-client-id' bucket: 'bucket-name' options: ACL: 'public-read' ``` You can see the `ACL: 'public-read'` which is now passed to AwsS3Adapter Please release new version after merge.
added missed "options" argument for AwsAdapterDefinitionBuilder
Hello @servocoder ! Thanks for your PR! Could you rebase on master (to avoid having a duplicated commit in the PR) and add the option in tests (don't hesitate to use #12 as an example :) ). |
Rebase is not the thing I'm experienced a lot with. Perhaps it would be better if you close my PR and commit the changes at your own. |
Ah, I understand! We can do it two ways then:
|
Go with option 2 please - complete it for me |
Hey @tgalopin, any chance to get it done soon? |
gentle reminder |
Hello @servocoder! Thanks for the reminder :) . Unfortunately, I'm very busy this summer and I try to focus my open-source work to what's needed for maintenance and stability. When I'll have time, I'll work on new features such as this one :) . If someone else wants to create a PR on this, feel free to do so! EDIT: "closed" misclick |
Fixed by #22 |
Thanks @servocoder for the original PR and @nico-incubiq for having finished it. OSS is powerful :) . |
Great! Thanks @nico-incubiq |
I'm waiting a few days to see if #19 can be merged but I'll release a new tag yes :) . |
Thanks! |
League\Flysystem\AwsS3v3\AwsS3Adapter supports 4th argument named "options", but it's missed in this package.
With the proposed changes I can now describe AWS storage as the following:
You can see the
ACL: 'public-read'
which is now passed to AwsS3AdapterPlease release new version after merge.