├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── DataSource.php ├── Mimetypes.php └── UploadedFile.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | None 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/uploads/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/uploads/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/uploads/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/uploads/HEAD/composer.json -------------------------------------------------------------------------------- /src/DataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/uploads/HEAD/src/DataSource.php -------------------------------------------------------------------------------- /src/Mimetypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/uploads/HEAD/src/Mimetypes.php -------------------------------------------------------------------------------- /src/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/uploads/HEAD/src/UploadedFile.php --------------------------------------------------------------------------------