-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 1.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "folklore/laravel-panneau",
"description": "",
"keywords": [
"laravel"
],
"homepage": "http://github.com/Folkloreatelier",
"license": "MIT",
"authors": [
{
"name": "Folklore",
"email": "[email protected]",
"homepage": "http://atelierfolklore.ca"
},
{
"name": "David Mongeau-Petitpas",
"email": "[email protected]",
"homepage": "http://mongo.ca",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "5.3.*|5.4.*|5.5.*|5.6.*",
"guzzlehttp/guzzle": "5.3|~6.0",
"spatie/eloquent-sortable": "^2.0|^3.0",
"folklore/eloquent-json-schema": "~0.9",
"folklore/laravel-mediatheque": "v1.x-dev",
"php-ffmpeg/binary-driver": "dev-master"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"orchestra/database": "3.3.*|3.4.*|3.5.*|3.6.*",
"orchestra/testbench": "3.3.*|3.4.*|3.5.*|3.6.*",
"mockery/mockery": "0.9.*|1.0.*",
"phpunit/phpunit": "~4.0|~4.1|~5.4|~5.7|~6.0|~7.0",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-0": {
"Folklore\\Panneau": "src/"
},
"files": [
"src/Folklore/Panneau/helpers.php"
],
"classmap": [
"scripts/PanneauJsInstaller.php"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"repositories": [
{
"type": "git",
"url": "https://github.com/PHP-FFMpeg/BinaryDriver.git"
}
],
"extra": {
"laravel": {
"providers": [
"Folklore\\Panneau\\PanneauServiceProvider"
],
"aliases": {
"Panneau": "Folklore\\Panneau\\Support\\Facades\\Panneau"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}