forked from bayareawebpro/laravel-simple-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.07 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
{
"name": "bayareawebpro/laravel-simple-csv",
"description": "A simple CSV importer/ exporter for Laravel.",
"license": "MIT",
"authors": [
{
"name": "Daniel Alvidrez",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"illuminate/support": "^6.0"
},
"require-dev": {
"orchestra/testbench": "^4.0",
"phpunit/phpunit": "^8.0",
"nunomaduro/larastan": "^0.4.2"
},
"autoload": {
"psr-4": {
"BayAreaWebPro\\SimpleCsv\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BayAreaWebPro\\SimpleCsv\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/phpstan analyse"
},
"extra": {
"laravel": {
"providers": [
"BayAreaWebPro\\SimpleCsv\\SimpleCsvServiceProvider"
],
"aliases": {
"SimpleCsv": "BayAreaWebPro\\SimpleCsv\\SimpleCsvFacade"
}
}
}
}