forked from goodby/csv
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
59 lines (59 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "handcraftedinthealps/goodby-csv",
"description": "CSV import/export library",
"type": "library",
"keywords": ["csv", "import", "export"],
"homepage": "https://github.com/handcraftedinthealps/goodby-csv",
"license": "MIT",
"authors": [
{
"name": "reoring",
"email": "[email protected]",
"homepage": "https://www.facebook.com/reoring",
"role": "Developer"
},
{
"name": "suin",
"email": "[email protected]",
"homepage": "https://www.facebook.com/suinyeze",
"role": "Developer, Renaming Specialist"
},
{
"name": "Handcrafted in the alps contributors",
"homepage": "https://github.com/handcraftedinthealps/goodby-csv/graphs/contributors",
"role": "Contributors"
}
],
"require": {
"php": ">=7.2",
"symfony/polyfill-mbstring": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"mockery/mockery": "^1.0",
"suin/php-expose": "^1.0",
"mikey179/vfsstream": "^1.1",
"rector/rector": "^0.12.5",
"phpspec/prophecy": "^1.14"
},
"autoload": {
"psr-0": {
"Goodby\\CSV": "src/"
},
"exclude-from-classmap": [
"/src/Goodby/CSV/Export/Tests/",
"/src/Goodby/CSV/Import/Tests/",
"/src/Goodby/CSV/TestHelper/"
]
},
"autoload-dev": {
"psr-4": {
"Goodby\\CSV\\Export\\Tests\\": "src/Goodby/CSV/Export/Tests/",
"Goodby\\CSV\\Import\\Tests\\": "src/Goodby/CSV/Import/Tests/",
"Goodby\\CSV\\TestHelper\\": "src/Goodby/CSV/TestHelper/"
}
},
"replace": {
"goodby/csv": "self.version"
}
}