-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
composer.json
78 lines (78 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"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.2",
"yajra/laravel-datatables-oracle": "^11",
"yajra/laravel-datatables-html": "^11",
"illuminate/console": "^11"
},
"require-dev": {
"larastan/larastan": "^2.9.2",
"orchestra/testbench": "^9",
"laravel/pint": "^1.14",
"rector/rector": "^1.0.2",
"maatwebsite/excel": "^3.1.55",
"rap2hpoutre/fast-excel": "^5.4"
},
"autoload": {
"psr-4": {
"Yajra\\DataTables\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yajra\\DataTables\\Buttons\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "11.0-dev"
},
"laravel": {
"providers": [
"Yajra\\DataTables\\ButtonsServiceProvider"
]
}
},
"suggest": {
"yajra/laravel-datatables-export": "Exporting of dataTables (excel, csv and PDF) via livewire and queue worker.",
"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."
},
"scripts": {
"test": "./vendor/bin/phpunit",
"pint": "./vendor/bin/pint",
"rector": "./vendor/bin/rector",
"stan": "./vendor/bin/phpstan analyse --memory-limit=2G --ansi --no-progress --no-interaction --configuration=phpstan.neon.dist",
"pr": [
"@pint",
"@rector",
"@stan",
"@test"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/yajra"
}
]
}