mein-sterntours/packages/iqcontent/laravel-filemanager/composer.json
2020-03-07 19:45:39 +01:00

61 lines
1.5 KiB
JSON

{
"name": "iqcontent/laravel-filemanager",
"description": "A file upload/editor intended for use with Laravel 5 and CKEditor / TinyMCE",
"license": "MIT",
"keywords": [
"filemanager",
"laravel",
"ckeditor",
"tinymce",
"upload",
"file",
"manager",
"image"
],
"authors": [
{
"name": "Kevin Adametz",
"email": "info@adametz.media"
}
],
"require": {
"php": ">=7.1.3",
"ext-exif": "*",
"ext-fileinfo": "*",
"intervention/image": "2.*",
"illuminate/config": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0",
"illuminate/filesystem": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0",
"illuminate/support": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0",
"illuminate/http": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0",
"illuminate/container": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0",
"cviebrock/eloquent-sluggable": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"mockery/mockery": "^0.9.9",
"squizlabs/php_codesniffer": "^3.1"
},
"suggest": {
"ext-gd": "to use GD library based image processing.",
"ext-imagick": "to use Imagick based image processing."
},
"autoload": {
"psr-4": {
"IqContent\\LaravelFilemanager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"IqContent\\LaravelFilemanager\\LaravelFilemanagerServiceProvider"
],
"aliases": {
}
}
}
}