-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
46 lines (46 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
{
"name": "portphp/csv",
"description": "CSV reader and writer for Port",
"license": "MIT",
"homepage": "https://github.com/portphp",
"authors": [
{
"name": "David de Boer",
"email": "[email protected]"
},
{
"name": "Markus Bachmann",
"email": "[email protected]"
},
{
"name": "Community contributors",
"homepage": "https://github.com/portphp/csv/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/portphp/portphp/issues",
"source": "https://github.com/portphp/csv",
"docs": "https://portphp.readthedocs.org"
},
"require": {
"portphp/portphp": "^1.6.0"
},
"autoload": {
"psr-4": {
"Port\\Csv\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
"psr-4": {
"Port\\Csv\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}