-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathcomposer.json
68 lines (68 loc) · 1.65 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
{
"name": "yajra/laravel-datatables-html",
"description": "Laravel DataTables HTML builder plugin",
"keywords": [
"yajra",
"laravel",
"dataTables",
"jquery",
"html",
"js"
],
"license": "MIT",
"authors": [
{
"name": "Arjay Angeles",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"yajra/laravel-datatables-oracle": "^11.0"
},
"require-dev": {
"larastan/larastan": "^2.9.1",
"orchestra/testbench": "^9",
"laravel/pint": "^1.14",
"rector/rector": "^1.0",
"livewire/livewire": "^3.4"
},
"suggest": {
"laravel/livewire": "Required for Livewire layout support."
},
"autoload": {
"psr-4": {
"Yajra\\DataTables\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yajra\\DataTables\\Html\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "11.0-dev"
},
"laravel": {
"providers": [
"Yajra\\DataTables\\HtmlServiceProvider"
]
}
},
"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": [
"@rector",
"@pint",
"@stan",
"@test"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}