-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
36 lines (35 loc) · 930 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": "thomasmars/laravel-h5p",
"description": "H5P Plugin for laravel platform",
"type": "library",
"authors": [
{
"name": "thomasmars",
"email": "[email protected]"
}
],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": false,
"autoload": {
"psr-4": {
"thomasmars\\LaravelH5p\\": "src/LaravelH5p"
}
},
"require": {
"php": "^7.0",
"laravel/framework": "5.4.*",
"nesbot/carbon": "^1.22",
"laravelcollective/html": "^5.3",
"twbs/bootstrap-sass": "@stable",
"h5p/h5p-core": "^1.14",
"h5p/h5p-editor": "^1.13",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"fzaninotto/faker": "^1.6",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.7",
"xethron/migrations-generator": "^2.0"
}
}