forked from pimlie/laravel-datatables-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.06 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
{
"name": "pimlie/laravel-datatables-mongodb",
"description": "Laravel DataTables plugin to support Mongodb",
"keywords": [
"laravel",
"dataTables",
"mongodb"
],
"license": "MIT",
"authors": [
{
"name": "pimlie",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0.2",
"yajra/laravel-datatables-oracle": "^10.0",
"jenssegers/mongodb" : "^3.9"
},
"autoload": {
"psr-4": {
"Pimlie\\DataTables\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pimlie\\DataTables\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Pimlie\\DataTables\\MongodbDataTablesServiceProvider"
]
}
},
"minimum-stability": "stable",
"require-dev": {
"orchestra/testbench": "^7",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"test": "vendor/bin/phpunit",
"cs": "vendor/bin/phpcs src/*"
}
}