-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathcomposer.json
42 lines (37 loc) · 902 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
36
37
38
39
40
41
42
{
"name": "usmanhalalit/laracsv",
"description": "A Laravel package to easily generate CSV files from Eloquent model.",
"homepage": "https://github.com/usmanhalalit/laracsv",
"keywords": ["laravel", "csv", "eloquent", "export"],
"license": "MIT",
"authors":
[
{
"name": "Muhammad Usman",
"email": "hi@usman.it",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"illuminate/database": ">=5.2",
"league/csv": "^9.0"
},
"require-dev": {
"fzaninotto/faker": "^1.8",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"Laracsv\\": "src/Laracsv/"
}
},
"autoload-dev": {
"psr-4": {
"Laracsv\\": "tests/Laracsv/"
},
"classmap": [
"tests/TestCase.php"
]
}
}