-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.38 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
{
"name": "distilleries/integration",
"description": "Tool to have a dashboard of component of the app.",
"license": "MIT",
"keywords": [
"framework",
"laravel",
"admin",
"form-generator",
"datatable-generator",
"expendable",
"distilleries",
"gulp"
],
"authors": [
{
"name": "Maxime Francois",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/support": "~5.6|~5.7|~5.8",
"illuminate/database": "~5.6|~5.7|~5.8",
"illuminate/translation": "~5.6|~5.7|~5.8"
},
"require-dev": {
"orchestra/database": "~3.6|~3.7|~3.8",
"orchestra/testbench": "~3.6|~3.7|~3.8",
"orchestra/testbench-browser-kit": "~3.6|~3.7|~3.8",
"phpunit/phpunit": "7.1.*",
"mockery/mockery": "0.9.*",
"fzaninotto/faker": "1.6.*"
},
"autoload": {
"files": [
"src/helpers.php"
],
"classmap": [
"tests"
],
"psr-4": {
"Distilleries\\Integration\\": "src/Distilleries/Integration"
}
},
"extra": {
"laravel": {
"providers": [
"Distilleries\\Integration\\IntegrationServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}