-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.15 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
{
"name": "backpack/export-operation",
"description": "Backpack operation to export all target model entries",
"license": "MIT",
"authors": [
{
"name": "Marc-André Martin",
"email": "[email protected]",
"homepage": "https://mamarmite.com"
}
],
"homepage": "",
"keywords": [
"Laravel", "ExportOperation", "Backpack", "Backpack for Laravel", "Backpack Operation",
"Backpack Add-On", "Admin Panel", "Admin Interface", "Excel", "CSV", "Large amount data"
],
"require": {
"../../vendor/backpack/crud": "^4.0.0|^4.1.0",
"maatwebsite/excel": "^3.1.0",
"dompdf/dompdf": "^1.2"
},
"require-dev": {
"../../vendor/phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Backpack\\ExportOperation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Backpack\\ExportOperation\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Backpack\\ExportOperation\\ExportOperationServiceProvider"
]
}
}
}