├── .github ├── ISSUE_TEMPLATE │ ├── Bug.md │ ├── Feature_Request.md │ └── Question.md ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── LICENSE ├── README.md ├── composer.json ├── doc ├── chunked_uploads.md ├── configuration_reference.md ├── custom_error_handler.md ├── custom_logic.md ├── custom_namer.md ├── custom_uploader.md ├── custom_validator.md ├── events.md ├── flysystem_storage.md ├── frontend_blueimp.md ├── frontend_dropzone.md ├── frontend_fancyupload.md ├── frontend_fineuploader.md ├── frontend_mooupload.md ├── frontend_plupload.md ├── frontend_uploadify.md ├── frontend_yui3.md ├── gaufrette_storage.md ├── index.md ├── load_balancers.md ├── orphanage.md ├── php_config.md ├── progress.md ├── response.md ├── templating.md └── testing.md ├── phpstan.neon ├── phpunit.xml.dist ├── src ├── Command │ ├── ClearChunkCommand.php │ └── ClearOrphansCommand.php ├── Controller │ ├── AbstractChunkedController.php │ ├── AbstractController.php │ ├── BlueimpController.php │ ├── DropzoneController.php │ ├── FancyUploadController.php │ ├── FineUploaderController.php │ ├── MooUploadController.php │ ├── PluploadController.php │ ├── UploadifyController.php │ └── YUI3Controller.php ├── DependencyInjection │ ├── Compiler │ │ └── ControllerPass.php │ ├── Configuration.php │ └── OneupUploaderExtension.php ├── Event │ ├── PostChunkUploadEvent.php │ ├── PostPersistEvent.php │ ├── PostUploadEvent.php │ ├── PreUploadEvent.php │ └── ValidationEvent.php ├── EventListener │ ├── AllowedMimetypeAndExtensionValidationListener.php │ ├── DisallowedMimetypeValidationListener.php │ └── MaxSizeValidationListener.php ├── OneupUploaderBundle.php ├── Resources │ ├── config │ │ ├── errorhandler.xml │ │ ├── templating.xml │ │ ├── twig.xml │ │ ├── uploader.xml │ │ └── validators.xml │ └── translations │ │ └── OneupUploaderBundle.en.yml ├── Routing │ └── RouteLoader.php ├── Templating │ └── Helper │ │ └── UploaderHelper.php ├── Twig │ └── Extension │ │ └── UploaderExtension.php ├── UploadEvents.php └── Uploader │ ├── Chunk │ ├── ChunkManager.php │ ├── ChunkManagerInterface.php │ └── Storage │ │ ├── ChunkStorageInterface.php │ │ ├── FilesystemStorage.php │ │ ├── FlysystemStorage.php │ │ └── GaufretteStorage.php │ ├── ErrorHandler │ ├── BlueimpErrorHandler.php │ ├── DropzoneErrorHandler.php │ ├── ErrorHandlerInterface.php │ ├── NoopErrorHandler.php │ └── PluploadErrorHandler.php │ ├── Exception │ └── ValidationException.php │ ├── File │ ├── FileInterface.php │ ├── FilesystemFile.php │ ├── FlysystemFile.php │ └── GaufretteFile.php │ ├── Gaufrette │ └── StreamManager.php │ ├── Naming │ ├── NamerInterface.php │ ├── UniqidNamer.php │ └── UrlSafeNamer.php │ ├── Orphanage │ └── OrphanageManager.php │ ├── Response │ ├── AbstractResponse.php │ ├── EmptyResponse.php │ ├── FineUploaderResponse.php │ ├── MooUploadResponse.php │ └── ResponseInterface.php │ └── Storage │ ├── FilesystemOrphanageStorage.php │ ├── FilesystemStorage.php │ ├── FlysystemOrphanageStorage.php │ ├── FlysystemStorage.php │ ├── GaufretteOrphanageStorage.php │ ├── GaufretteStorage.php │ ├── OrphanageStorageInterface.php │ └── StorageInterface.php └── tests ├── App ├── Kernel.php └── config │ ├── config.yml │ └── routing.yml ├── Controller ├── AbstractChunkedUploadTest.php ├── AbstractControllerTest.php ├── AbstractUploadTest.php ├── AbstractValidationTest.php ├── BlueimpTest.php ├── BlueimpValidationTest.php ├── DropzoneTest.php ├── DropzoneValidationTest.php ├── FancyUploadTest.php ├── FancyUploadValidationTest.php ├── FileBagExtractorTest.php ├── FineUploaderTest.php ├── FineUploaderValidationTest.php ├── MooUploadTest.php ├── PluploadTest.php ├── PluploadValidationTest.php ├── UploadifyTest.php ├── UploadifyValidationTest.php ├── YUI3Test.php └── YUI3ValidationTest.php ├── DependencyInjection └── OneupUploaderExtensionTest.php ├── Routing └── RouteLoaderTest.php ├── Templating └── TemplateHelperTest.php ├── UploadEventsTest.php ├── Uploader ├── Chunk │ └── Storage │ │ ├── ChunkStorageTest.php │ │ ├── FilesystemStorageTest.php │ │ ├── FlysystemStorageTest.php │ │ └── GaufretteStorageTest.php ├── File │ ├── FileTest.php │ ├── FilesystemFileTest.php │ └── GaufretteFileTest.php ├── Naming │ ├── UniqidNamerTest.php │ └── UrlSafeNamerTest.php ├── Orphanage │ └── OrphanageManagerTest.php ├── Response │ ├── EmptyResponseTest.php │ ├── FineUploaderResponseTest.php │ └── MooUploadResponseTest.php └── Storage │ ├── FilesystemOrphanageStorageTest.php │ ├── FilesystemStorageTest.php │ ├── FlysystemOrphanageStorageTest.php │ ├── FlysystemStorageTest.php │ ├── GaufretteAmazonS3StorageTest.php │ ├── GaufretteOrphanageStorageTest.php │ ├── GaufretteStorageTest.php │ └── OrphanageTest.php └── bootstrap.php /.github/ISSUE_TEMPLATE/Bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/.github/ISSUE_TEMPLATE/Bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/.github/ISSUE_TEMPLATE/Feature_Request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/.github/ISSUE_TEMPLATE/Question.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/composer.json -------------------------------------------------------------------------------- /doc/chunked_uploads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/chunked_uploads.md -------------------------------------------------------------------------------- /doc/configuration_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/configuration_reference.md -------------------------------------------------------------------------------- /doc/custom_error_handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/custom_error_handler.md -------------------------------------------------------------------------------- /doc/custom_logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/custom_logic.md -------------------------------------------------------------------------------- /doc/custom_namer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/custom_namer.md -------------------------------------------------------------------------------- /doc/custom_uploader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/custom_uploader.md -------------------------------------------------------------------------------- /doc/custom_validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/custom_validator.md -------------------------------------------------------------------------------- /doc/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/events.md -------------------------------------------------------------------------------- /doc/flysystem_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/flysystem_storage.md -------------------------------------------------------------------------------- /doc/frontend_blueimp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/frontend_blueimp.md -------------------------------------------------------------------------------- /doc/frontend_dropzone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/frontend_dropzone.md -------------------------------------------------------------------------------- /doc/frontend_fancyupload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/frontend_fancyupload.md -------------------------------------------------------------------------------- /doc/frontend_fineuploader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/frontend_fineuploader.md -------------------------------------------------------------------------------- /doc/frontend_mooupload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/frontend_mooupload.md -------------------------------------------------------------------------------- /doc/frontend_plupload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/frontend_plupload.md -------------------------------------------------------------------------------- /doc/frontend_uploadify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/frontend_uploadify.md -------------------------------------------------------------------------------- /doc/frontend_yui3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/frontend_yui3.md -------------------------------------------------------------------------------- /doc/gaufrette_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/gaufrette_storage.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/load_balancers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/load_balancers.md -------------------------------------------------------------------------------- /doc/orphanage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/orphanage.md -------------------------------------------------------------------------------- /doc/php_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/php_config.md -------------------------------------------------------------------------------- /doc/progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/progress.md -------------------------------------------------------------------------------- /doc/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/response.md -------------------------------------------------------------------------------- /doc/templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/templating.md -------------------------------------------------------------------------------- /doc/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/doc/testing.md -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Command/ClearChunkCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Command/ClearChunkCommand.php -------------------------------------------------------------------------------- /src/Command/ClearOrphansCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Command/ClearOrphansCommand.php -------------------------------------------------------------------------------- /src/Controller/AbstractChunkedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Controller/AbstractChunkedController.php -------------------------------------------------------------------------------- /src/Controller/AbstractController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Controller/AbstractController.php -------------------------------------------------------------------------------- /src/Controller/BlueimpController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Controller/BlueimpController.php -------------------------------------------------------------------------------- /src/Controller/DropzoneController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Controller/DropzoneController.php -------------------------------------------------------------------------------- /src/Controller/FancyUploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Controller/FancyUploadController.php -------------------------------------------------------------------------------- /src/Controller/FineUploaderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Controller/FineUploaderController.php -------------------------------------------------------------------------------- /src/Controller/MooUploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Controller/MooUploadController.php -------------------------------------------------------------------------------- /src/Controller/PluploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Controller/PluploadController.php -------------------------------------------------------------------------------- /src/Controller/UploadifyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Controller/UploadifyController.php -------------------------------------------------------------------------------- /src/Controller/YUI3Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Controller/YUI3Controller.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/ControllerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/DependencyInjection/Compiler/ControllerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/OneupUploaderExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/DependencyInjection/OneupUploaderExtension.php -------------------------------------------------------------------------------- /src/Event/PostChunkUploadEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Event/PostChunkUploadEvent.php -------------------------------------------------------------------------------- /src/Event/PostPersistEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Event/PostPersistEvent.php -------------------------------------------------------------------------------- /src/Event/PostUploadEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Event/PostUploadEvent.php -------------------------------------------------------------------------------- /src/Event/PreUploadEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Event/PreUploadEvent.php -------------------------------------------------------------------------------- /src/Event/ValidationEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Event/ValidationEvent.php -------------------------------------------------------------------------------- /src/EventListener/AllowedMimetypeAndExtensionValidationListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/EventListener/AllowedMimetypeAndExtensionValidationListener.php -------------------------------------------------------------------------------- /src/EventListener/DisallowedMimetypeValidationListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/EventListener/DisallowedMimetypeValidationListener.php -------------------------------------------------------------------------------- /src/EventListener/MaxSizeValidationListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/EventListener/MaxSizeValidationListener.php -------------------------------------------------------------------------------- /src/OneupUploaderBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/OneupUploaderBundle.php -------------------------------------------------------------------------------- /src/Resources/config/errorhandler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Resources/config/errorhandler.xml -------------------------------------------------------------------------------- /src/Resources/config/templating.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Resources/config/templating.xml -------------------------------------------------------------------------------- /src/Resources/config/twig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Resources/config/twig.xml -------------------------------------------------------------------------------- /src/Resources/config/uploader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Resources/config/uploader.xml -------------------------------------------------------------------------------- /src/Resources/config/validators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Resources/config/validators.xml -------------------------------------------------------------------------------- /src/Resources/translations/OneupUploaderBundle.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Resources/translations/OneupUploaderBundle.en.yml -------------------------------------------------------------------------------- /src/Routing/RouteLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Routing/RouteLoader.php -------------------------------------------------------------------------------- /src/Templating/Helper/UploaderHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Templating/Helper/UploaderHelper.php -------------------------------------------------------------------------------- /src/Twig/Extension/UploaderExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Twig/Extension/UploaderExtension.php -------------------------------------------------------------------------------- /src/UploadEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/UploadEvents.php -------------------------------------------------------------------------------- /src/Uploader/Chunk/ChunkManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Chunk/ChunkManager.php -------------------------------------------------------------------------------- /src/Uploader/Chunk/ChunkManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Chunk/ChunkManagerInterface.php -------------------------------------------------------------------------------- /src/Uploader/Chunk/Storage/ChunkStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Chunk/Storage/ChunkStorageInterface.php -------------------------------------------------------------------------------- /src/Uploader/Chunk/Storage/FilesystemStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Chunk/Storage/FilesystemStorage.php -------------------------------------------------------------------------------- /src/Uploader/Chunk/Storage/FlysystemStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Chunk/Storage/FlysystemStorage.php -------------------------------------------------------------------------------- /src/Uploader/Chunk/Storage/GaufretteStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Chunk/Storage/GaufretteStorage.php -------------------------------------------------------------------------------- /src/Uploader/ErrorHandler/BlueimpErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/ErrorHandler/BlueimpErrorHandler.php -------------------------------------------------------------------------------- /src/Uploader/ErrorHandler/DropzoneErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/ErrorHandler/DropzoneErrorHandler.php -------------------------------------------------------------------------------- /src/Uploader/ErrorHandler/ErrorHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/ErrorHandler/ErrorHandlerInterface.php -------------------------------------------------------------------------------- /src/Uploader/ErrorHandler/NoopErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/ErrorHandler/NoopErrorHandler.php -------------------------------------------------------------------------------- /src/Uploader/ErrorHandler/PluploadErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/ErrorHandler/PluploadErrorHandler.php -------------------------------------------------------------------------------- /src/Uploader/Exception/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Exception/ValidationException.php -------------------------------------------------------------------------------- /src/Uploader/File/FileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/File/FileInterface.php -------------------------------------------------------------------------------- /src/Uploader/File/FilesystemFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/File/FilesystemFile.php -------------------------------------------------------------------------------- /src/Uploader/File/FlysystemFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/File/FlysystemFile.php -------------------------------------------------------------------------------- /src/Uploader/File/GaufretteFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/File/GaufretteFile.php -------------------------------------------------------------------------------- /src/Uploader/Gaufrette/StreamManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Gaufrette/StreamManager.php -------------------------------------------------------------------------------- /src/Uploader/Naming/NamerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Naming/NamerInterface.php -------------------------------------------------------------------------------- /src/Uploader/Naming/UniqidNamer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Naming/UniqidNamer.php -------------------------------------------------------------------------------- /src/Uploader/Naming/UrlSafeNamer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Naming/UrlSafeNamer.php -------------------------------------------------------------------------------- /src/Uploader/Orphanage/OrphanageManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Orphanage/OrphanageManager.php -------------------------------------------------------------------------------- /src/Uploader/Response/AbstractResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Response/AbstractResponse.php -------------------------------------------------------------------------------- /src/Uploader/Response/EmptyResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Response/EmptyResponse.php -------------------------------------------------------------------------------- /src/Uploader/Response/FineUploaderResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Response/FineUploaderResponse.php -------------------------------------------------------------------------------- /src/Uploader/Response/MooUploadResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Response/MooUploadResponse.php -------------------------------------------------------------------------------- /src/Uploader/Response/ResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Response/ResponseInterface.php -------------------------------------------------------------------------------- /src/Uploader/Storage/FilesystemOrphanageStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Storage/FilesystemOrphanageStorage.php -------------------------------------------------------------------------------- /src/Uploader/Storage/FilesystemStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Storage/FilesystemStorage.php -------------------------------------------------------------------------------- /src/Uploader/Storage/FlysystemOrphanageStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Storage/FlysystemOrphanageStorage.php -------------------------------------------------------------------------------- /src/Uploader/Storage/FlysystemStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Storage/FlysystemStorage.php -------------------------------------------------------------------------------- /src/Uploader/Storage/GaufretteOrphanageStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Storage/GaufretteOrphanageStorage.php -------------------------------------------------------------------------------- /src/Uploader/Storage/GaufretteStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Storage/GaufretteStorage.php -------------------------------------------------------------------------------- /src/Uploader/Storage/OrphanageStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Storage/OrphanageStorageInterface.php -------------------------------------------------------------------------------- /src/Uploader/Storage/StorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/src/Uploader/Storage/StorageInterface.php -------------------------------------------------------------------------------- /tests/App/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/App/Kernel.php -------------------------------------------------------------------------------- /tests/App/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/App/config/config.yml -------------------------------------------------------------------------------- /tests/App/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/App/config/routing.yml -------------------------------------------------------------------------------- /tests/Controller/AbstractChunkedUploadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/AbstractChunkedUploadTest.php -------------------------------------------------------------------------------- /tests/Controller/AbstractControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/AbstractControllerTest.php -------------------------------------------------------------------------------- /tests/Controller/AbstractUploadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/AbstractUploadTest.php -------------------------------------------------------------------------------- /tests/Controller/AbstractValidationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/AbstractValidationTest.php -------------------------------------------------------------------------------- /tests/Controller/BlueimpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/BlueimpTest.php -------------------------------------------------------------------------------- /tests/Controller/BlueimpValidationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/BlueimpValidationTest.php -------------------------------------------------------------------------------- /tests/Controller/DropzoneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/DropzoneTest.php -------------------------------------------------------------------------------- /tests/Controller/DropzoneValidationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/DropzoneValidationTest.php -------------------------------------------------------------------------------- /tests/Controller/FancyUploadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/FancyUploadTest.php -------------------------------------------------------------------------------- /tests/Controller/FancyUploadValidationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/FancyUploadValidationTest.php -------------------------------------------------------------------------------- /tests/Controller/FileBagExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/FileBagExtractorTest.php -------------------------------------------------------------------------------- /tests/Controller/FineUploaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/FineUploaderTest.php -------------------------------------------------------------------------------- /tests/Controller/FineUploaderValidationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/FineUploaderValidationTest.php -------------------------------------------------------------------------------- /tests/Controller/MooUploadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/MooUploadTest.php -------------------------------------------------------------------------------- /tests/Controller/PluploadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/PluploadTest.php -------------------------------------------------------------------------------- /tests/Controller/PluploadValidationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/PluploadValidationTest.php -------------------------------------------------------------------------------- /tests/Controller/UploadifyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/UploadifyTest.php -------------------------------------------------------------------------------- /tests/Controller/UploadifyValidationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/UploadifyValidationTest.php -------------------------------------------------------------------------------- /tests/Controller/YUI3Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/YUI3Test.php -------------------------------------------------------------------------------- /tests/Controller/YUI3ValidationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Controller/YUI3ValidationTest.php -------------------------------------------------------------------------------- /tests/DependencyInjection/OneupUploaderExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/DependencyInjection/OneupUploaderExtensionTest.php -------------------------------------------------------------------------------- /tests/Routing/RouteLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Routing/RouteLoaderTest.php -------------------------------------------------------------------------------- /tests/Templating/TemplateHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Templating/TemplateHelperTest.php -------------------------------------------------------------------------------- /tests/UploadEventsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/UploadEventsTest.php -------------------------------------------------------------------------------- /tests/Uploader/Chunk/Storage/ChunkStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Chunk/Storage/ChunkStorageTest.php -------------------------------------------------------------------------------- /tests/Uploader/Chunk/Storage/FilesystemStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Chunk/Storage/FilesystemStorageTest.php -------------------------------------------------------------------------------- /tests/Uploader/Chunk/Storage/FlysystemStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Chunk/Storage/FlysystemStorageTest.php -------------------------------------------------------------------------------- /tests/Uploader/Chunk/Storage/GaufretteStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Chunk/Storage/GaufretteStorageTest.php -------------------------------------------------------------------------------- /tests/Uploader/File/FileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/File/FileTest.php -------------------------------------------------------------------------------- /tests/Uploader/File/FilesystemFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/File/FilesystemFileTest.php -------------------------------------------------------------------------------- /tests/Uploader/File/GaufretteFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/File/GaufretteFileTest.php -------------------------------------------------------------------------------- /tests/Uploader/Naming/UniqidNamerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Naming/UniqidNamerTest.php -------------------------------------------------------------------------------- /tests/Uploader/Naming/UrlSafeNamerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Naming/UrlSafeNamerTest.php -------------------------------------------------------------------------------- /tests/Uploader/Orphanage/OrphanageManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Orphanage/OrphanageManagerTest.php -------------------------------------------------------------------------------- /tests/Uploader/Response/EmptyResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Response/EmptyResponseTest.php -------------------------------------------------------------------------------- /tests/Uploader/Response/FineUploaderResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Response/FineUploaderResponseTest.php -------------------------------------------------------------------------------- /tests/Uploader/Response/MooUploadResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Response/MooUploadResponseTest.php -------------------------------------------------------------------------------- /tests/Uploader/Storage/FilesystemOrphanageStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Storage/FilesystemOrphanageStorageTest.php -------------------------------------------------------------------------------- /tests/Uploader/Storage/FilesystemStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Storage/FilesystemStorageTest.php -------------------------------------------------------------------------------- /tests/Uploader/Storage/FlysystemOrphanageStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Storage/FlysystemOrphanageStorageTest.php -------------------------------------------------------------------------------- /tests/Uploader/Storage/FlysystemStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Storage/FlysystemStorageTest.php -------------------------------------------------------------------------------- /tests/Uploader/Storage/GaufretteAmazonS3StorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Storage/GaufretteAmazonS3StorageTest.php -------------------------------------------------------------------------------- /tests/Uploader/Storage/GaufretteOrphanageStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Storage/GaufretteOrphanageStorageTest.php -------------------------------------------------------------------------------- /tests/Uploader/Storage/GaufretteStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Storage/GaufretteStorageTest.php -------------------------------------------------------------------------------- /tests/Uploader/Storage/OrphanageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/Uploader/Storage/OrphanageTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1up-lab/OneupUploaderBundle/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------