-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.04 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"name": "brunodebarros/fix-php-post-input",
"type": "library",
"description": "If your $_POST/$_FILES are empty and they shouldn't be, this library fixes them.",
"keywords": [
"compatibility",
"post",
"files",
"input"
],
"homepage": "https://github.com/BrunoDeBarros/fix-php-post-input",
"license": "MIT",
"authors": [
{
"name": "Bruno De Barros",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/brunodebarros/multipart-parser"
}
],
"require": {
"php": ">=5.4",
"riverline/multipart-parser": "dev-master"
},
"autoload": {
"psr-4": {
"Brunodebarros\\FixPhpPostInput\\": ""
},
"files": [
"bootstrap.php"
]
},
"minimum-stability": "dev",
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}