forked from yajra/laravel-datatables-buttons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.44 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
56
57
58
{
"name": "yajra/laravel-datatables-buttons",
"description": "Laravel DataTables Buttons Plugin.",
"keywords": [
"laravel",
"datatables",
"buttons",
"jquery"
],
"license": "MIT",
"authors": [
{
"name": "Arjay Angeles",
"email": "aqangeles@gmail.com"
}
],
"require": {
"php": "^8.0.2",
"yajra/laravel-datatables-oracle": "10.*",
"yajra/laravel-datatables-html": "9.*",
"illuminate/console": "*"
},
"require-dev": {
"maatwebsite/excel": "^3.1.40",
"nunomaduro/larastan": "2.1.*",
"orchestra/testbench": "^7.3",
"rap2hpoutre/fast-excel": "^3.2",
"barryvdh/laravel-snappy": "^1.0"
},
"autoload": {
"psr-4": {
"Yajra\\DataTables\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yajra\\DataTables\\Buttons\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "9.0-dev"
},
"laravel": {
"providers": [
"Yajra\\DataTables\\ButtonsServiceProvider"
]
}
},
"suggest": {
"maatwebsite/excel": "Exporting of dataTables (excel, csv and PDF) using maatwebsite package.",
"rap2hpoutre/fast-excel": "Faster exporting of dataTables using fast-excel package.",
"dompdf/dompdf": "Allows exporting of dataTable to PDF using the DomPDF.",
"barryvdh/laravel-snappy": "Allows exporting of dataTable to PDF using the print view."
},
"minimum-stability": "dev",
"prefer-stable": true
}