-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.06 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"name": "djoudi/laravel-h5p",
"description": "H5P Plugin for Laravel platform - Updated for Laravel 12",
"type": "library",
"authors": [
{
"name": "Abdelouahab Djoudi",
"email": "info@djoudi.net"
}
],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Djoudi\\LaravelH5p\\": "src/LaravelH5p"
}
},
"require": {
"php": "^8.2",
"laravel/framework": "^12.0",
"h5p/h5p-core": "^1.24",
"h5p/h5p-editor": "^1.24",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^11.0"
},
"extra": {
"laravel": {
"providers": [
"Djoudi\\LaravelH5p\\LaravelH5pServiceProvider"
],
"aliases": {
"LaravelH5p": "Djoudi\\LaravelH5p\\Facades\\LaravelH5p"
}
}
}
}