Enth\u00e4lt gemischt: Laravel-10-Upgrade + Phase 1 (Contacts-Modul, Duplicats-Commands, Soft-Delete+Merge-Fields) + Phase 2 Code-Umstellungen (inquiry_id, $table='contacts'/'inquiries') + Offers-Modul (Migrationen, Models, offer_id in Booking, offer-Disk in filesystems.php). Phase 2 + Offers werden im folgenden Commit nach dev/backups/phase2-offers-2026-04-17/ verschoben, damit der Workspace auf Phase-1-only (= Test-System-Stand) reduziert ist und direkt auf Live deploybar wird. Tarball-Backup zus\u00e4tzlich unter: ../backups-safety/workspace-pre-phase1-rollback-2026-04-17.tar.gz Made-with: Cursor
62 lines
1.5 KiB
JSON
62 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": ">=8.1",
|
|
"ext-exif": "*",
|
|
"ext-fileinfo": "*",
|
|
"intervention/image": "2.*",
|
|
"illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
|
|
"illuminate/filesystem": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
|
|
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
|
|
"illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
|
|
"illuminate/container": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.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": {
|
|
}
|
|
}
|
|
}
|
|
}
|