-
Notifications
You must be signed in to change notification settings - Fork 58
/
composer.json
35 lines (35 loc) · 862 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
{
"name": "jwage/easy-csv",
"type": "library",
"description": "Easy CSV manipulation for PHP 5.4+",
"keywords": ["csv", "read", "write"],
"homepage": "http://github.com/jwage/easy-csv",
"license": "MIT",
"authors": [
{"name": "Jonathan H. Wage", "email": "jonwage@gmail.com"}
],
"autoload": {
"psr-4": {
"EasyCSV\\": "lib/EasyCSV"
}
},
"autoload-dev": {
"psr-4": {
"EasyCSV\\Tests\\": "tests/EasyCSV/Tests"
}
},
"require": {
"php": "^7.2"
},
"require-dev": {
"doctrine/coding-standard": "^6.0",
"phpstan/phpstan": "^0.11.5",
"phpstan/phpstan-strict-rules": "^0.11.0",
"phpunit/phpunit": "^8.1"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}