-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
62 lines (62 loc) · 1.51 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
{
"name": "yajra/laravel-datatables-fractal",
"description": "Laravel DataTables Fractal Plugin.",
"keywords": [
"laravel",
"datatables",
"fractal",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Arjay Angeles",
"email": "aqangeles@gmail.com"
}
],
"require": {
"php": "^8.2",
"yajra/laravel-datatables-oracle": "^12",
"league/fractal": "^0.20.1"
},
"require-dev": {
"larastan/larastan": "^3.1",
"orchestra/testbench": "^10",
"laravel/pint": "^1.21",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"Yajra\\DataTables\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yajra\\DataTables\\Fractal\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "12.x-dev"
},
"laravel": {
"providers": [
"Yajra\\DataTables\\FractalServiceProvider"
]
}
},
"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
}