This repository has been archived by the owner on Apr 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
58 lines (58 loc) · 1.52 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
{
"name": "escolasoft/laravel-h5p",
"description": "H5P Plugin for laravel platform",
"type": "library",
"authors": [{
"name": "Alefe Souza",
"email": "[email protected]"
},
{
"name": "Anass BOUTAKAOUA",
"email": "[email protected]"
},
{
"name": "Abdelouahab Djoudi",
"email": "[email protected]"
},
{
"name": "Mateusz Wojczal",
"email": "[email protected]"
},
{
"name": "Marcin Lenkowski",
"email": "[email protected]"
}
],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"EscolaSoft\\LaravelH5p\\": "src/LaravelH5p"
}
},
"require": {
"php": "^7.2",
"laravel/framework": "7.*",
"laravelcollective/html": ">=6.0.0",
"escolasoft/h5p-core": "dev-master",
"escolasoft/h5p-editor": "dev-master",
"guzzlehttp/guzzle": ">=6"
},
"require-dev": {
"fzaninotto/faker": "^1.8",
"mockery/mockery": "1.2.*",
"phpunit/phpunit": "~7.0",
"kitloong/laravel-migrations-generator": "^4.0"
},
"extra": {
"laravel": {
"providers": [
"EscolaSoft\\LaravelH5p\\LaravelH5pServiceProvider"
],
"aliases": {
"LaravelH5p": "EscolaSoft\\LaravelH5p\\Facades"
}
}
}
}