-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (47 loc) · 1.09 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
{
"name": "idct/php-csv-writer",
"description": "CsvWriter based on a buffered TextWriter with EOL support.",
"keywords": [
"csv",
"eol",
"io",
"textwriter",
"csvwriter",
"text",
"idct"
],
"license": "MIT",
"authors": [
{
"name": "Bartosz Pachołek",
"email": "bartosz@idct.pl",
"role": "Lead"
}
],
"repositories": [],
"require": {
"php": ">=7.1",
"ext-ctype": "*",
"ext-mbstring": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^7.5",
"mikey179/vfsstream": "^1.6.8",
"php-mock/php-mock-phpunit": "^2.5",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"IDCT\\CsvWriter\\": "src/"
}
},
"scripts": {
"test": [
"./vendor/phpunit/phpunit/phpunit"
],
"generate-coveralls": [
"./vendor/php-coveralls/php-coveralls/bin/php-coveralls -v"
]
}
}