gitextract_hjyck40z/ ├── .devcontainer/ │ └── devcontainer.json ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug_report.md │ │ └── Feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ └── test.yaml ├── .gitignore ├── .php-cs-fixer.php ├── .symfony.bundle.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── config/ │ ├── command.yaml │ ├── elfinder.yaml │ └── form.yaml ├── docs/ │ ├── advanced-configuration.md │ ├── ckeditor-integration.md │ ├── configuration-dump.md │ ├── cors-support.md │ ├── elfinder-form-type.md │ ├── events-listeners-subscribers.md │ ├── flysystem.md │ ├── summernote-integration.md │ └── tinymce-integration.md ├── phpunit.xml.dist ├── src/ │ ├── Bridge/ │ │ └── ElFinderBridge.php │ ├── Command/ │ │ └── ElFinderInstallerCommand.php │ ├── Configuration/ │ │ ├── ElFinderConfigurationProviderInterface.php │ │ └── ElFinderConfigurationReader.php │ ├── Connector/ │ │ └── ElFinderConnector.php │ ├── Controller/ │ │ └── ElFinderController.php │ ├── DependencyInjection/ │ │ ├── Compiler/ │ │ │ ├── ElFinderConfigurationPass.php │ │ │ └── TwigFormPass.php │ │ ├── Configuration.php │ │ └── FMElfinderExtension.php │ ├── ElFinder/ │ │ └── ElFinder.php │ ├── Event/ │ │ ├── ElFinderPostExecutionEvent.php │ │ └── ElFinderPreExecutionEvent.php │ ├── FMElfinderBundle.php │ ├── Form/ │ │ └── Type/ │ │ └── ElFinderType.php │ ├── Loader/ │ │ ├── ElFinderLoader.php │ │ └── ElFinderLoaderInterface.php │ ├── Resources/ │ │ ├── config/ │ │ │ └── routing.yaml │ │ ├── public/ │ │ │ └── tinymceElfinder.js │ │ └── views/ │ │ ├── Elfinder/ │ │ │ ├── ckeditor.html.twig │ │ │ ├── elfinder_type.html.twig │ │ │ ├── fm_tinymce.html.twig │ │ │ ├── helper/ │ │ │ │ ├── _summernote.html.twig │ │ │ │ ├── _tinymce.html.twig │ │ │ │ ├── _tinymce4.html.twig │ │ │ │ ├── _tinymce5.html.twig │ │ │ │ └── main.js.twig │ │ │ ├── simple.html.twig │ │ │ ├── summernote.html.twig │ │ │ ├── tinymce.html.twig │ │ │ └── tinymce4.html.twig │ │ └── Form/ │ │ └── elfinder_widget.html.twig │ ├── Security/ │ │ └── ElfinderSecurityInterface.php │ ├── Session/ │ │ └── ElFinderSession.php │ └── Twig/ │ └── Extension/ │ └── FMElfinderExtension.php └── tests/ ├── Command/ │ └── ElFinderInstallerCommandTest.php ├── Configuration/ │ └── ElFinderConfigurationReaderTest.php ├── DependencyInjection/ │ ├── Compiler/ │ │ └── TwigFormPassTest.php │ ├── ConfigurationLoadTest.php │ └── FMElfinderExtensionTest.php ├── Event/ │ ├── ElFinderPostExecutionEventTest.php │ └── ElFinderPreExecutionEventTest.php ├── FMElfinderBundleTest.php ├── Fixtures/ │ └── config/ │ ├── config.php │ └── config.yml ├── Form/ │ └── Type/ │ └── ElFinderTypeTest.php ├── Functional/ │ ├── AppKernel.php │ └── config/ │ ├── config.yml │ ├── config_test.yml │ └── routing.yml ├── Loader/ │ └── ElFinderLoaderTest.php ├── Twig/ │ └── Extension/ │ └── FMElfinderExtensionTest.php ├── autoload.php └── bootstrap.php