forked from Riverline/multipart-parser
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (43 loc) · 1.03 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
44
45
46
47
48
49
50
51
52
53
{
"name":"frdl/mime-stub",
"description":"This script can be used to generate -self-executing- .php Files. ",
"keywords":["self-executing","multipart","parser", "stub"],
"type":"library",
"license": "MIT",
"authors":[
{
"name":"Romain Cambien",
"email":"[email protected]"
},
{
"name":"Riverline",
"homepage":"http://www.riverline.fr"
},
{
"name":"Till Wehowski",
"homepage":"http://webfan.de"
}
],
"require":{
"php": ">=5.3"
},
"require-dev":{
},
"suggest": {
},
"conflict": {
},
"provide" : {
"riverline/multipart-parser": "*"
},
"autoload":{
"psr-0":{
"Riverline\\MultiPartParser\\": "src/"
},
"psr-4": {
"webfan\\Mime\\": "src/webfan/Mime/",
"webfan\\hps\\Compile\\": "src/webfan/hps/Compile/"
},
"classmap": ["src/MimeStubIndex.php", "src/webfan/MimeStub.php", "src/webfan/Mime/vm.php", "src/webfan/MimeStubAPC.php"]
}
}