-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
45 lines (43 loc) · 1.12 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
{
"name": "djoudi/laravel-h5p",
"description": "H5P Plugin for laravel platform",
"type": "library",
"authors": [
{
"name": "Abdelouahab Djoudi",
"email": "[email protected]"
}
],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Djoudi\\LaravelH5p\\": "src/LaravelH5p"
}
},
"require": {
"php": "^7.2",
"laravel/framework": "7.*",
"laravelcollective/html": "7.0",
"h5p/h5p-core": "^1.24.0",
"h5p/h5p-editor": "^1.24.0",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"fzaninotto/faker": "^1.8",
"mockery/mockery": "1.2.*",
"phpunit/phpunit": "~7.0",
"xethron/migrations-generator": "^2.0"
},
"extra": {
"laravel": {
"providers": [
"Djoudi\\LaravelH5p\\LaravelH5pServiceProvider"
],
"aliases": {
"LaravelH5p": "Djoudi\\LaravelH5p\\Facades"
}
}
}
}