Skip to content

Commit

Permalink
allow multi part types
Browse files Browse the repository at this point in the history
  • Loading branch information
goetas committed Dec 27, 2018
1 parent ab03c7d commit c6a34a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
[![Code Coverage](https://scrutinizer-ci.com/g/goetas/MultipartUploadBundle/badges/coverage.png)](https://scrutinizer-ci.com/g/goetas/MultipartUploadBundle/)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/goetas/MultipartUploadBundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/goetas/MultipartUploadBundle/?branch=master)

Symfony `multipart/related` content type handler.
Symfony `multipart/related`, `multipart/alternative` and `multipart/mixed` content type handler.

This bundle implements a subset of the [https://www.w3.org/Protocols/rfc1341/7_2_Multipart.html](https://www.w3.org/Protocols/rfc1341/7_2_Multipart.html) specifications
and allows you to deal with `Content-Type: multipart-related;` requests with Symfony.
and allows you to deal with `Content-Type: multipart/*;` requests with Symfony.

## Install
Run `composer require goetas/multipart-upload-bundle`
Expand All @@ -17,11 +17,11 @@ Add bundle to symfony (if not using symfony/flex)

## Request format

A `multipart-related` request could look like this:
A `multipart/related` request could look like this:

```
Host: localhost
Content-Type: multipart-related; boundary=19D523FB
Content-Type: multipart/related; boundary=19D523FB
--19D523FB
Content-Type: application/json
Expand Down

0 comments on commit c6a34a0

Please sign in to comment.