-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
36 lines (36 loc) · 1.08 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
{
"name": "distilleries/datatable-builder",
"description": "Based on https://github.com/chumper/datatable. It's an abstract class to implement the datatable like https://github.com/Distilleries/FormBuilder.",
"license": "MIT",
"authors": [
{
"name": "Maxime Francois",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/support": "5.8.*",
"illuminate/view": "5.8.*",
"illuminate/filesystem": "5.8.*",
"distilleries/datatable": "3.1.*",
"distilleries/form-builder": "2.13.*"
},
"autoload": {
"classmap": [
],
"psr-4": {
"Distilleries\\DatatableBuilder\\": "src/Distilleries/DatatableBuilder"
}
},
"require-dev": {
"orchestra/database": "3.8.*",
"orchestra/testbench": "3.8.*",
"orchestra/testbench-browser-kit": "3.8.*",
"phpunit/phpunit": "~7.0",
"mockery/mockery": "~1.0",
"fzaninotto/faker": "~1.4"
},
"minimum-stability": "dev",
"prefer-stable": true
}