Booking, QI Content, Trees, Media
This commit is contained in:
parent
1f340e96fa
commit
7fbac395a9
260 changed files with 27160 additions and 3773 deletions
61
packages/iqcontent/laravel-filemanager/composer.json
Normal file
61
packages/iqcontent/laravel-filemanager/composer.json
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"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.*",
|
||||
"illuminate/filesystem": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
|
||||
"illuminate/support": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
|
||||
"illuminate/http": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
|
||||
"illuminate/container": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
|
||||
"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": {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue