-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 878 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
{
"name": "satooshi/ltsv-encoder",
"description": "LTSV encoder based on Symfony Serializer component",
"keywords": ["file"],
"homepage": "https://github.com/satooshi/ltsv-encoder",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Kitamura Satoshi",
"email": "[email protected]",
"homepage": "https://www.facebook.com/satooshi.jp"
}
],
"require": {
"php": ">=5.3.17",
"symfony/serializer": "2.2.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"phpunit/php-invoker": ">=1.1.0,<1.2.0",
"pdepend/pdepend": "dev-master",
"phpmd/phpmd": "dev-master",
"squizlabs/php_codesniffer": "1.4.*"
},
"autoload": {
"psr-0": { "Contrib\\Component": "src/" }
}
}