forked from ddeboer/transcoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 991 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
34
35
36
37
{
"name": "ddeboer/transcoder",
"description": "Better encoding conversion for PHP",
"keywords": [ "encoding", "utf-8", "iso", "mb", "iconv", "multibyte", "charset", "mb_convert_encoding" ],
"license": "MIT",
"authors": [
{
"name": "David de Boer",
"email": "david@ddeboer.nl"
},
{
"name": "Community contributors",
"homepage": "https://github.com/ddeboer/transcoder/graphs/contributors"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"suggest": {
"ext-mbstring": "For using the MbTranscoder",
"ext-iconv": "For using the IconvTranscoder"
},
"autoload": {
"psr-4": {
"Ddeboer\\Transcoder\\": "src/",
"Ddeboer\\Transcoder\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}