chore: fix deprecations in flysystem config

This commit is contained in:
Björn Fromme
2026-05-28 13:59:55 +02:00
parent bdf8cffd04
commit 5561a24050
+6 -12
View File
@@ -1,32 +1,26 @@
flysystem: flysystem:
storages: storages:
xml_export.storage: xml_export.storage:
adapter: 'local' local:
options:
directory: '%env(resolve:XML_EXPORT_PATH)%' directory: '%env(resolve:XML_EXPORT_PATH)%'
xml_export_contingents.storage: xml_export_contingents.storage:
adapter: 'local' local:
options:
directory: '%env(resolve:XML_EXPORT_CONTINGENTS_PATH)%' directory: '%env(resolve:XML_EXPORT_CONTINGENTS_PATH)%'
xml_source.storage: xml_source.storage:
adapter: 'sftp' sftp:
options:
host: '%env(SFTP_XML_EXPORT_HOST)%' host: '%env(SFTP_XML_EXPORT_HOST)%'
port: '%env(int:SFTP_XML_EXPORT_PORT)%' port: '%env(int:SFTP_XML_EXPORT_PORT)%'
username: '%env(SFTP_XML_EXPORT_USER)%' username: '%env(SFTP_XML_EXPORT_USER)%'
password: '%env(SFTP_XML_EXPORT_PASSWORD)%' password: '%env(SFTP_XML_EXPORT_PASSWORD)%'
xml_source_contingents.storage: xml_source_contingents.storage:
adapter: 'sftp' sftp:
options:
host: '%env(SFTP_XML_EXPORT_CONTINGENTS_HOST)%' host: '%env(SFTP_XML_EXPORT_CONTINGENTS_HOST)%'
port: '%env(int:SFTP_XML_EXPORT_CONTINGENTS_PORT)%' port: '%env(int:SFTP_XML_EXPORT_CONTINGENTS_PORT)%'
username: '%env(SFTP_XML_EXPORT_CONTINGENTS_USER)%' username: '%env(SFTP_XML_EXPORT_CONTINGENTS_USER)%'
password: '%env(SFTP_XML_EXPORT_CONTINGENTS_PASSWORD)%' password: '%env(SFTP_XML_EXPORT_CONTINGENTS_PASSWORD)%'
xml_dump.storage: xml_dump.storage:
adapter: 'local' local:
options:
directory: '%kernel.project_dir%/var/bpn' directory: '%kernel.project_dir%/var/bpn'
json_export.storage: json_export.storage:
adapter: 'local' local:
options:
directory: '%env(resolve:JSON_EXPORT_PATH)%' directory: '%env(resolve:JSON_EXPORT_PATH)%'