forked from yajra/laravel-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.16 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
{
"name": "yajra/laravel-datatables-oracle",
"description": "jQuery DataTables API for Laravel 4|5",
"keywords": [
"laravel",
"dataTables",
"jquery"
],
"license": "MIT",
"authors": [
{
"name": "Arjay Angeles",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/database": "5.4.*",
"illuminate/filesystem": "5.4.*",
"illuminate/http": "5.4.*",
"illuminate/support": "5.4.*",
"illuminate/view": "5.4.*"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"orchestra/testbench": "^3.4",
"phpunit/phpunit": "~5.7"
},
"suggest": {
"yajra/laravel-datatables-buttons": "Plugin for server-side exporting of dataTable.",
"yajra/laravel-datatables-html": "Plugin for server-side HTML builder of dataTable.",
"league/fractal": "Transform your api response into something you won't hate."
},
"autoload": {
"psr-4": {
"Yajra\\Datatables\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yajra\\Datatables\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "7.0-dev"
}
},
"minimum-stability": "stable"
}