-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
49 lines (49 loc) · 1.33 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
{
"name": "etechnika/idna-convert",
"type": "library",
"description": "Etechnika.eu idna-convert",
"keywords": ["lib"],
"homepage": "https://github.com/etechnika/idna-convert",
"license": "LGPL-2.1",
"authors": [
{
"name": "Tomasz Rutkowski",
"email": "[email protected]",
"homepage": "http://etechnika.eu",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"Etechnika\\IdnaConvert": "src/"
}
},
"require": {
"php": ">=5.6.0",
"algo26-matthias/idna-convert": "~0.9"
},
"require-dev": {
"fabpot/php-cs-fixer": "~1.0",
"mayflower/php-codebrowser": "~1.1",
"pdepend/pdepend": "~2.0",
"phing/phing": "~2.10",
"phploc/phploc": "~2.0",
"phpmd/phpmd": "~2.0",
"phpunit/php-code-coverage": "~2.0",
"phpunit/phpcov": "~2.0",
"phpunit/phpunit": "~4.1",
"satooshi/php-coveralls": "~0.6",
"sebastian/phpcpd": "~2.0",
"sebastian/phpdcd": "~1.0",
"squizlabs/php_codesniffer": "~2.0"
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "5.6"
}
},
"suggest": {
"monolog/monolog": "You should used orginal package mso/idna-convert"
}
}