├── .github └── workflows │ └── php.yml ├── LICENSE ├── README.md ├── composer.json └── src ├── Converters ├── Globals.php ├── HttpFoundation.php └── PSR7.php ├── Part.php └── StreamedPart.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riverline/multipart-parser/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riverline/multipart-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riverline/multipart-parser/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riverline/multipart-parser/HEAD/composer.json -------------------------------------------------------------------------------- /src/Converters/Globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riverline/multipart-parser/HEAD/src/Converters/Globals.php -------------------------------------------------------------------------------- /src/Converters/HttpFoundation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riverline/multipart-parser/HEAD/src/Converters/HttpFoundation.php -------------------------------------------------------------------------------- /src/Converters/PSR7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riverline/multipart-parser/HEAD/src/Converters/PSR7.php -------------------------------------------------------------------------------- /src/Part.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riverline/multipart-parser/HEAD/src/Part.php -------------------------------------------------------------------------------- /src/StreamedPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riverline/multipart-parser/HEAD/src/StreamedPart.php --------------------------------------------------------------------------------