-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.28 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
{
"name": "enflow/laravel-excel-to-google-sheet",
"description": "Push Laravel Excel exporters to Google Sheets",
"keywords": [
"enflow",
"excel",
"sheet"
],
"homepage": "https://github.com/enflow/laravel-excel-to-google-sheet",
"license": "MIT",
"authors": [
{
"name": "Michel Bardelmeijer",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"google/apiclient": "^2.13",
"laravel/framework": "^10.0|^11.0",
"maatwebsite/excel": "^3.1",
"spatie/laravel-package-tools": "^1.15"
},
"require-dev": {
"laravel/pint": "^1.0",
"phpunit/phpunit": "^10.5|^11.0"
},
"autoload": {
"psr-4": {
"Enflow\\LaravelExcelToGoogleSheet\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Enflow\\LaravelExcelToGoogleSheet\\LaravelExcelToGoogleSheetServiceProvider"
]
}
},
"autoload-dev": {
"psr-4": {
"Enflow\\LaravelExcelToGoogleSheet\\Test\\": "tests"
}
},
"scripts": {
"format": "vendor/bin/pint",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}