-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
31 lines (30 loc) · 859 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
{
"name" : "jupitern/file-parser",
"description": "read, filter, parse and format {csv, tsv, dsv, variable-length-delimited} and other txt files",
"keywords" : ["file parser", "csv", "dsv", "tsv", "variable-length-delimited"],
"homepage" : "https://github.com/jupitern/file-parser",
"license" : "MIT",
"authors" : [
{
"name" : "Nuno Chaves",
"email" : "[email protected]",
"role" : "Developer"
}
],
"support": {
"source": "https://github.com/jupitern/file-parser",
"issues": "https://github.com/jupitern/file-parser/issues"
},
"require" :{
"php":">=8.0"
},
"autoload": {
"psr-4": {
"Jupitern\\Parser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
}
}
}