-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 928 Bytes
/
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/layout-manager",
"description": "Create and manage your own custom layouts with this simple widget based plugin.",
"license": "MIT",
"authors": [
{
"name": "Jean-François Meinesz",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.3.*",
"illuminate/database": "5.3.*",
"illuminate/translation": "5.3.*",
"distilleries/datatable-builder": "2.8.*",
"distilleries/form-builder": "2.8.*"
},
"require-dev": {
"orchestra/database": "~3.3",
"orchestra/testbench": "~3.3",
"phpunit/phpunit": "~4.7",
"mockery/mockery": "0.9.*",
"fzaninotto/faker": "1.5.*",
"distilleries/expendable": "2.13.*"
},
"autoload": {
"classmap": [
"tests"
],
"psr-4": {
"Distilleries\\LayoutManager\\": "src/Distilleries/LayoutManager"
}
}
}