forked from IonBazan/goodby-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.46 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
{
"name": "magenerds/goodby-csv",
"description": "CSV import/export library",
"type": "library",
"keywords": [
"csv",
"import",
"export"
],
"homepage": "https://github.com/Magenerds/goodby-csv",
"license": "MIT",
"authors": [
{
"name": "reoring",
"email": "mori.reo@gmail.com",
"homepage": "https://www.facebook.com/reoring",
"role": "Developer"
},
{
"name": "suin",
"email": "suinyeze@gmail.com",
"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"
},
{
"name": "Simon Sippert",
"homepage": "https://www.techdivision.com/",
"role": "Contributors"
}
],
"require": {
"php": ">=8.0",
"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"
},
"autoload": {
"psr-0": {
"Goodby\\CSV": "src/"
}
},
"replace": {
"goodby/csv": "self.version"
}
}