-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 836 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "robtimus/multipart",
"type": "library",
"description": "A library to support (streaming) multiparts",
"homepage": "https://github.com/robtimus/php-multipart",
"keywords": ["multipart", "streaming"],
"license": "Apache-2.0",
"authors": [
{
"name": "Rob Spoor",
"email": "robtimus@users.noreply.github.com"
}
],
"support": {
"issues": "https://github.com/robtimus/php-multipart/issues"
},
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": "~4"
},
"autoload": {
"psr-4": {
"Robtimus\\Multipart\\": ["src/Robtimus/Multipart"]
}
},
"autoload-dev": {
"psr-4": {
"Robtimus\\Multipart\\": ["tests/Robtimus/Multipart"]
}
}
}