diff --git a/.gitignore b/.gitignore index 952767f9..775a8883 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ Homestead.json /.vscode /packages /_volumes +/public/basset diff --git a/app/Http/Controllers/Admin/FluentMonsterCrudController.php b/app/Http/Controllers/Admin/FluentMonsterCrudController.php index 15e0e2c1..e29660c2 100644 --- a/app/Http/Controllers/Admin/FluentMonsterCrudController.php +++ b/app/Http/Controllers/Admin/FluentMonsterCrudController.php @@ -443,12 +443,6 @@ protected function setupCreateOperation() ->type('summernote') ->label('Summernote editor') ->tab('Big texts'); - - CRUD::field('wysiwyg') - ->type('ckeditor') - ->label('CKEditor - also called the WYSIWYG field') - ->tab('Big texts'); - CRUD::field('tinymce') ->type('tinymce') ->label('TinyMCE') diff --git a/app/Http/Controllers/Admin/MonsterCrudController.php b/app/Http/Controllers/Admin/MonsterCrudController.php index 8d155d71..53a4b7ca 100644 --- a/app/Http/Controllers/Admin/MonsterCrudController.php +++ b/app/Http/Controllers/Admin/MonsterCrudController.php @@ -15,8 +15,8 @@ class MonsterCrudController extends CrudController use \Backpack\CRUD\app\Http\Controllers\Operations\DeleteOperation; use \Backpack\CRUD\app\Http\Controllers\Operations\ShowOperation; use \Backpack\CRUD\app\Http\Controllers\Operations\FetchOperation; - use \Backpack\Pro\Http\Controllers\Operations\DropzoneOperation { dropzoneUpload as traitDropzone; } - use \App\Http\Controllers\Admin\Operations\SMSOperation; //Custom Form Operation Example + use \Backpack\Pro\Http\Controllers\Operations\AjaxUploadOperation { ajaxUpload as traitAjaxUpload; } + use Operations\SMSOperation; //Custom Form Operation Example use \Backpack\ActivityLog\Http\Controllers\Operations\ModelActivityOperation; use \Backpack\ActivityLog\Http\Controllers\Operations\EntryActivityOperation; @@ -320,13 +320,6 @@ public function setupShowOperation() 'tab' => 'WYSIWYG Editors', ]); - $this->crud->addColumn([ - 'name' => 'wysiwyg', - 'type' => 'wysiwyg', - 'label' => 'Wysiwyg'.backpack_pro_badge(), - 'tab' => 'WYSIWYG Editors', - ]); - $this->crud->addColumn([ 'name' => 'features', 'label' => 'Features'.backpack_pro_badge(), @@ -1703,10 +1696,11 @@ public static function getFieldsArrayForWysiwygEditorsTab() 'tab' => 'WYSIWYG Editors', ], [ // Summernote - 'name' => 'summernote', - 'label' => 'Summernote editor'.backpack_free_badge(), - 'type' => 'summernote', - 'tab' => 'WYSIWYG Editors', + 'name' => 'summernote', + 'label' => 'Summernote editor'.backpack_free_badge(), + 'type' => 'summernote', + 'tab' => 'WYSIWYG Editors', + 'withFiles' => true, ], [ // CKEditor 'name' => 'ckeditor', @@ -1720,12 +1714,6 @@ public static function getFieldsArrayForWysiwygEditorsTab() 'type' => 'tinymce', 'tab' => 'WYSIWYG Editors', ], - [ // Wysiwyg - 'name' => 'wysiwyg', - 'label' => 'Wysiwyg'.backpack_pro_badge(), - 'type' => 'wysiwyg', - 'tab' => 'WYSIWYG Editors', - ], ]; } @@ -1837,15 +1825,17 @@ public static function getFieldsArrayForMiscellaneousTab() ]; } - public function dropzoneUpload() + public function ajaxUpload() { if (app('env') === 'production') { return response()->json(['errors' => [ - 'dropzone' => ['Uploads are disabled in production'], + 'dropzone' => ['Uploads are disabled in production'], + 'easymde' => ['Uploads are disabled in production'], + 'summernote' => ['Uploads are disabled in production'], ], ], 500); } - return $this->traitDropzone(); + return $this->traitAjaxUpload(); } } diff --git a/app/Http/Controllers/Admin/ProductCrudController.php b/app/Http/Controllers/Admin/ProductCrudController.php index 1de33f8e..b3e1ca96 100644 --- a/app/Http/Controllers/Admin/ProductCrudController.php +++ b/app/Http/Controllers/Admin/ProductCrudController.php @@ -91,10 +91,10 @@ protected function setupCreateOperation() 'tab' => 'Texts', ]); - CRUD::addField([ // Wysiwyg + CRUD::addField([ // summernote 'name' => 'details', 'label' => 'Details', - 'type' => 'wysiwyg', + 'type' => 'summernote', 'tab' => 'Texts', ]); diff --git a/composer.json b/composer.json index 90db349b..627527b0 100644 --- a/composer.json +++ b/composer.json @@ -1,32 +1,40 @@ { "name": "backpack/demo", "description": "A Laravel + Backpack installation to show off most features.", - "keywords": ["backpack", "laravel", "backpack for laravel", "admin panel", "crud"], + "keywords": [ + "backpack", + "laravel", + "backpack for laravel", + "admin panel", + "crud" + ], "license": "proprietary", "type": "project", "require": { "php": "^8.2", "laravel/framework": "^11.0", - "backpack/activity-log": "^2.0.3", - "backpack/backupmanager": "^5.0", - "backpack/calendar-operation": "^1.0", - "backpack/crud": "^6.7", - "backpack/editable-columns": "^3.0", - "backpack/filemanager": "^3.0", - "backpack/language-switcher": "^2.0", - "backpack/logmanager": "^5.0", - "backpack/medialibrary-uploaders": "^1.0", - "backpack/menucrud": "^4.0", - "backpack/newscrud": "^5.0", - "backpack/pagemanager": "^3.0", - "backpack/permissionmanager": "^7.0", - "backpack/pro": "^2.0", - "backpack/revise-operation": "^2.0", - "backpack/settings": "^3.1", - "backpack/theme-coreuiv2": "^1.0", - "backpack/theme-coreuiv4": "^1.0", - "backpack/theme-tabler": "^1.0", - "backpack/translation-manager": "^1.0", + "backpack/crud": "7.0.0-alpha.1", + "backpack/pro": "3.0.0-alpha.2", + "backpack/medialibrary-uploaders": "dev-next as 1.99.99", + "backpack/ckeditor-field": "dev-next as 1.0.0", + "backpack/tinymce-field": "dev-next as 1.0.0", + "backpack/activity-log": "dev-next as 1.0.0", + "backpack/backupmanager": "dev-next as 6.0", + "backpack/calendar-operation": "dev-next as 1.0.0", + "backpack/editable-columns": "dev-next as 1.0.0", + "backpack/filemanager": "dev-next as 3.99.99", + "backpack/language-switcher": "dev-next as 3.99.99", + "backpack/logmanager": "dev-next as 3.99.99", + "backpack/menucrud": "dev-next as 3.99.99", + "backpack/newscrud": "dev-next as 3.99.99", + "backpack/pagemanager": "dev-next as 3.99.99", + "backpack/permissionmanager": "dev-next as 3.99.99", + "backpack/revise-operation": "dev-next as 3.99.99", + "backpack/settings": "dev-next as 3.99.99", + "backpack/theme-coreuiv2": "dev-next as 3.99.99", + "backpack/theme-coreuiv4": "dev-next as 3.99.99", + "backpack/theme-tabler": "dev-next as 3.99.99", + "backpack/translation-manager": "dev-next as 3.99.99", "consoletvs/charts": "6.*", "intervention/image": "^2.3", "laravel/legacy-factories": "^1.0", @@ -35,21 +43,29 @@ "mews/purifier": "^3.4", "spatie/laravel-ignition": "^2.0", "spatie/laravel-translatable": "^6.0", - "backpack/pan-panel": "^1.0" + "backpack/pan-panel": "dev-next as 3.99.99" }, "require-dev": { "fakerphp/faker": "~1.4", "mockery/mockery": "1.6.*", - "phpunit/phpunit" : "^11", + "phpunit/phpunit": "^11", "symfony/css-selector": "^7", "symfony/dom-crawler": "^7", - "backpack/generators": "^4.0", + "backpack/generators": "dev-next as 3.99.99", "barryvdh/laravel-debugbar": "^3.2" }, "repositories": [ { "type": "composer", "url": "https://repo.backpackforlaravel.com/" + }, + { + "type": "vcs", + "url": "https://github.com/Laravel-Backpack/ckeditor-field.git" + }, + { + "type": "vcs", + "url": "https://github.com/Laravel-Backpack/tinymce-field.git" } ], "autoload": { @@ -74,10 +90,12 @@ ], "post-install-cmd": [ "Illuminate\\Foundation\\ComposerScripts::postInstall", - "php artisan storage:link -q" + "php artisan storage:link -q", + "@php artisan basset:cache" ], "post-update-cmd": [ - "Illuminate\\Foundation\\ComposerScripts::postUpdate" + "Illuminate\\Foundation\\ComposerScripts::postUpdate", + "@php artisan basset:cache" ], "post-autoload-dump": [ "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", diff --git a/composer.lock b/composer.lock index 468db6e3..be680341 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "86e5bec7f0a125c9e8da66ee12eb7e8c", + "content-hash": "9f7c6803603bf2a1dc6116a932f83a02", "packages": [ { "name": "aws/aws-crt-php", @@ -62,16 +62,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.336.7", + "version": "3.339.8", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "3ebc383239f93d6f1e74573112c9d179070d2620" + "reference": "c0e959cc4bedd9a819f419f5bc29675a8fd12714" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3ebc383239f93d6f1e74573112c9d179070d2620", - "reference": "3ebc383239f93d6f1e74573112c9d179070d2620", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/c0e959cc4bedd9a819f419f5bc29675a8fd12714", + "reference": "c0e959cc4bedd9a819f419f5bc29675a8fd12714", "shasum": "" }, "require": { @@ -79,31 +79,31 @@ "ext-json": "*", "ext-pcre": "*", "ext-simplexml": "*", - "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", - "guzzlehttp/promises": "^1.4.0 || ^2.0", - "guzzlehttp/psr7": "^1.9.1 || ^2.4.5", - "mtdowling/jmespath.php": "^2.6", - "php": ">=7.2.5", - "psr/http-message": "^1.0 || ^2.0" + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/promises": "^2.0", + "guzzlehttp/psr7": "^2.4.5", + "mtdowling/jmespath.php": "^2.8.0", + "php": ">=8.1", + "psr/http-message": "^2.0" }, "require-dev": { "andrewsville/php-token-reflection": "^1.4", "aws/aws-php-sns-message-validator": "~1.0", "behat/behat": "~3.0", - "composer/composer": "^1.10.22", + "composer/composer": "^2.7.8", "dms/phpunit-arraysubset-asserts": "^0.4.0", "doctrine/cache": "~1.4", "ext-dom": "*", "ext-openssl": "*", "ext-pcntl": "*", "ext-sockets": "*", - "nette/neon": "^2.3", "paragonie/random_compat": ">= 2", "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5", - "psr/cache": "^1.0 || ^2.0 || ^3.0", - "psr/simple-cache": "^1.0 || ^2.0 || ^3.0", - "sebastian/comparator": "^1.2.3 || ^4.0", - "yoast/phpunit-polyfills": "^1.0" + "psr/cache": "^2.0 || ^3.0", + "psr/simple-cache": "^2.0 || ^3.0", + "sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0", + "symfony/filesystem": "^v6.4.0 || ^v7.1.0", + "yoast/phpunit-polyfills": "^2.0" }, "suggest": { "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", @@ -152,28 +152,28 @@ "sdk" ], "support": { - "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", + "forum": "https://github.com/aws/aws-sdk-php/discussions", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.336.7" + "source": "https://github.com/aws/aws-sdk-php/tree/3.339.8" }, - "time": "2025-01-02T19:07:47+00:00" + "time": "2025-02-06T19:03:13+00:00" }, { "name": "backpack/activity-log", - "version": "2.0.6", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/activity-log.git", - "reference": "d567f3afe2603842503d41580bd1d72fea2115fd" + "reference": "5949ebabc360ad2a22fc6261d1352c4fb13fda78" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/activity-log/zipball/d567f3afe2603842503d41580bd1d72fea2115fd", - "reference": "d567f3afe2603842503d41580bd1d72fea2115fd", + "url": "https://api.github.com/repos/Laravel-Backpack/activity-log/zipball/5949ebabc360ad2a22fc6261d1352c4fb13fda78", + "reference": "5949ebabc360ad2a22fc6261d1352c4fb13fda78", "shasum": "" }, "require": { - "backpack/crud": "^6.0", + "backpack/crud": "7.0.0-alpha.1", "spatie/laravel-activitylog": "^4.7" }, "require-dev": { @@ -220,27 +220,27 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/activity-log/issues", - "source": "https://github.com/Laravel-Backpack/activity-log/tree/2.0.6" + "source": "https://github.com/Laravel-Backpack/activity-log/tree/next" }, - "time": "2024-10-24T10:13:35+00:00" + "time": "2025-01-27T10:43:47+00:00" }, { "name": "backpack/backupmanager", - "version": "v5.0.5", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/BackupManager.git", - "reference": "d26be6a0b99cf420df94d0964383269fd95e1512" + "reference": "a7af065b710fb377d21dcc5b8ea008a679e648a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/BackupManager/zipball/d26be6a0b99cf420df94d0964383269fd95e1512", - "reference": "d26be6a0b99cf420df94d0964383269fd95e1512", + "url": "https://api.github.com/repos/Laravel-Backpack/BackupManager/zipball/a7af065b710fb377d21dcc5b8ea008a679e648a5", + "reference": "a7af065b710fb377d21dcc5b8ea008a679e648a5", "shasum": "" }, "require": { - "backpack/crud": "^6.0", - "spatie/laravel-backup": "^8.0" + "backpack/crud": "7.0.0-alpha.1", + "spatie/laravel-backup": "^9.0" }, "require-dev": { "scrutinizer/ocular": "~1.7|~1.1" @@ -276,29 +276,28 @@ "backpack", "backup", "backupmanager", - "dick", "laravel", "tabacitu", "updivision" ], "support": { "issues": "https://github.com/Laravel-Backpack/BackupManager/issues", - "source": "https://github.com/Laravel-Backpack/BackupManager/tree/v5.0.5" + "source": "https://github.com/Laravel-Backpack/BackupManager/tree/next" }, - "time": "2024-09-03T13:39:44+00:00" + "time": "2025-01-27T10:44:56+00:00" }, { "name": "backpack/basset", - "version": "1.3.6", + "version": "2.0.0-alpha.2", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/basset.git", - "reference": "2c20d233d58c42b8c826688e9c613cab82bf62e1" + "reference": "d82527f974e405b56967ad0982bec6777c6fdd32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/basset/zipball/2c20d233d58c42b8c826688e9c613cab82bf62e1", - "reference": "2c20d233d58c42b8c826688e9c613cab82bf62e1", + "url": "https://api.github.com/repos/Laravel-Backpack/basset/zipball/d82527f974e405b56967ad0982bec6777c6fdd32", + "reference": "d82527f974e405b56967ad0982bec6777c6fdd32", "shasum": "" }, "require": { @@ -357,26 +356,26 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/basset/issues", - "source": "https://github.com/Laravel-Backpack/basset/tree/1.3.6" + "source": "https://github.com/Laravel-Backpack/basset/tree/2.0.0-alpha.2" }, - "time": "2024-08-28T10:12:55+00:00" + "time": "2025-01-22T15:54:46+00:00" }, { "name": "backpack/calendar-operation", - "version": "1.0.12", + "version": "dev-next", "source": { "type": "git", "url": "git@github.com:Laravel-Backpack/calendar-operation.git", - "reference": "42caf462743e14c98f07875f9ff66064a7f98d4e" + "reference": "726f35037a69c4c54d5754d90b729f726ee3a2ee" }, "dist": { "type": "zip", - "url": "https://repo.backpackforlaravel.com/dist/backpack/calendar-operation/backpack-calendar-operation-42caf462743e14c98f07875f9ff66064a7f98d4e-zip-426564.zip", - "reference": "42caf462743e14c98f07875f9ff66064a7f98d4e", - "shasum": "329264242236ae6fc9f0b196a54f4e93b036d41c" + "url": "https://repo.backpackforlaravel.com/dist/backpack/calendar-operation/backpack-calendar-operation-726f35037a69c4c54d5754d90b729f726ee3a2ee-zip-428181.zip", + "reference": "726f35037a69c4c54d5754d90b729f726ee3a2ee", + "shasum": "9bdec2c2eec58ca170c9fa8384912a8a788eea96" }, "require": { - "backpack/crud": "^6.5" + "backpack/crud": "7.0.0-alpha.1" }, "require-dev": { "larastan/larastan": "^2.8", @@ -434,27 +433,71 @@ "Laravel" ], "support": { - "source": "https://github.com/Laravel-Backpack/calendar-operation/tree/1.0.12", + "source": "https://github.com/Laravel-Backpack/calendar-operation/tree/next", "issues": "https://github.com/Laravel-Backpack/calendar-operation/issues" }, - "time": "2024-12-26T15:10:45+00:00" + "time": "2025-01-27T10:45:10+00:00" + }, + { + "name": "backpack/ckeditor-field", + "version": "dev-next", + "source": { + "type": "git", + "url": "git@github.com:Laravel-Backpack/ckeditor-field.git", + "reference": "2cf7f24c548cf4d86a5551fa41a8388f397013a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Laravel-Backpack/ckeditor-field/zipball/2cf7f24c548cf4d86a5551fa41a8388f397013a2", + "reference": "2cf7f24c548cf4d86a5551fa41a8388f397013a2", + "shasum": "" + }, + "require": { + "backpack/crud": "7.0.0-alpha.1" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Backpack\\CkeditorField\\BackpackCkeditorFieldProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Backpack\\CkeditorField\\": "src/" + } + }, + "license": [ + "MIT" + ], + "description": "CKEditor field for Backpack", + "keywords": [ + "backpack", + "laravel" + ], + "support": { + "source": "https://github.com/Laravel-Backpack/ckeditor-field/tree/next", + "issues": "https://github.com/Laravel-Backpack/ckeditor-field/issues" + }, + "time": "2025-01-28T10:41:29+00:00" }, { "name": "backpack/crud", - "version": "6.7.45", + "version": "7.0.0-alpha.1", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/CRUD.git", - "reference": "5a39ace937bfa5a2ce3740c4d42fa7e93de4cbf7" + "reference": "70198154b086001b9b4047774f8a8fd3bf5d7b31" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/CRUD/zipball/5a39ace937bfa5a2ce3740c4d42fa7e93de4cbf7", - "reference": "5a39ace937bfa5a2ce3740c4d42fa7e93de4cbf7", + "url": "https://api.github.com/repos/Laravel-Backpack/CRUD/zipball/70198154b086001b9b4047774f8a8fd3bf5d7b31", + "reference": "70198154b086001b9b4047774f8a8fd3bf5d7b31", "shasum": "" }, "require": { - "backpack/basset": "^1.1.1|^1.3.2", + "backpack/basset": "2.0.0-alpha.2", "creativeorange/gravatar": "~1.0", "doctrine/dbal": "^3.0|^4.0", "guzzlehttp/guzzle": "^7.0", @@ -529,26 +572,26 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/CRUD/issues", - "source": "https://github.com/Laravel-Backpack/CRUD/tree/6.7.45" + "source": "https://github.com/Laravel-Backpack/CRUD/tree/7.0.0-alpha.1" }, - "time": "2024-12-20T16:51:25+00:00" + "time": "2025-01-23T10:31:42+00:00" }, { "name": "backpack/editable-columns", - "version": "3.0.11", + "version": "dev-next", "source": { "type": "git", "url": "git@github.com:Laravel-Backpack/editable-columns.git", - "reference": "8adddb801c15871abc466bc59dbc2234664c8fab" + "reference": "fb617544282f67fa93b8b7690e38c53a37af31f1" }, "dist": { "type": "zip", - "url": "https://repo.backpackforlaravel.com/dist/backpack/editable-columns/backpack-editable-columns-8adddb801c15871abc466bc59dbc2234664c8fab-zip-1f6c5d.zip", - "reference": "8adddb801c15871abc466bc59dbc2234664c8fab", - "shasum": "611325b066ce5c76e340bd42619dca972fb3fe4d" + "url": "https://repo.backpackforlaravel.com/dist/backpack/editable-columns/backpack-editable-columns-fb617544282f67fa93b8b7690e38c53a37af31f1-zip-de5c04.zip", + "reference": "fb617544282f67fa93b8b7690e38c53a37af31f1", + "shasum": "7378f1104f3dc002e354320582115a13c308af19" }, "require": { - "backpack/crud": "^6.0" + "backpack/crud": "7.0.0-alpha.1" }, "require-dev": { "orchestra/testbench": "~5|~6", @@ -597,27 +640,27 @@ "Laravel" ], "support": { - "source": "https://github.com/Laravel-Backpack/editable-columns/tree/3.0.11", + "source": "https://github.com/Laravel-Backpack/editable-columns/tree/next", "issues": "https://github.com/Laravel-Backpack/editable-columns/issues" }, - "time": "2024-11-22T14:47:51+00:00" + "time": "2025-01-27T10:45:51+00:00" }, { "name": "backpack/filemanager", - "version": "3.0.10", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/FileManager.git", - "reference": "25b5c97084b8a2af67d822c376066e4f4fdb8e85" + "reference": "a2d59a01a4a7e3ce5d7aaec7249cace48cc6a3d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/FileManager/zipball/25b5c97084b8a2af67d822c376066e4f4fdb8e85", - "reference": "25b5c97084b8a2af67d822c376066e4f4fdb8e85", + "url": "https://api.github.com/repos/Laravel-Backpack/FileManager/zipball/a2d59a01a4a7e3ce5d7aaec7249cace48cc6a3d8", + "reference": "a2d59a01a4a7e3ce5d7aaec7249cace48cc6a3d8", "shasum": "" }, "require": { - "backpack/crud": "^6.0", + "backpack/crud": "7.0.0-alpha.1", "barryvdh/laravel-elfinder": "^0.5.2" }, "require-dev": { @@ -657,26 +700,26 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/FileManager/issues", - "source": "https://github.com/Laravel-Backpack/FileManager/tree/3.0.10" + "source": "https://github.com/Laravel-Backpack/FileManager/tree/next" }, - "time": "2024-11-18T13:11:07+00:00" + "time": "2025-01-27T15:39:10+00:00" }, { "name": "backpack/language-switcher", - "version": "2.0.0", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/language-switcher.git", - "reference": "6773d5b4caebf4f7e212c318983abe6707c4b117" + "reference": "35e6064c989c4c6e91ead204070b52cc24666997" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/language-switcher/zipball/6773d5b4caebf4f7e212c318983abe6707c4b117", - "reference": "6773d5b4caebf4f7e212c318983abe6707c4b117", + "url": "https://api.github.com/repos/Laravel-Backpack/language-switcher/zipball/35e6064c989c4c6e91ead204070b52cc24666997", + "reference": "35e6064c989c4c6e91ead204070b52cc24666997", "shasum": "" }, "require": { - "backpack/crud": "^6.0", + "backpack/crud": "7.0.0-alpha.1", "outhebox/blade-flags": "^1.2" }, "require-dev": { @@ -723,26 +766,26 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/language-switcher/issues", - "source": "https://github.com/Laravel-Backpack/language-switcher/tree/2.0.0" + "source": "https://github.com/Laravel-Backpack/language-switcher/tree/next" }, - "time": "2024-01-17T13:50:28+00:00" + "time": "2025-01-28T10:31:01+00:00" }, { "name": "backpack/logmanager", - "version": "v5.0.2", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/LogManager.git", - "reference": "8b38e10107d15b084ac9b7a8b7cdeb6cbc4e3a5e" + "reference": "9c16a0d24db9d385a59583d1a35f4c4c79d7496c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/LogManager/zipball/8b38e10107d15b084ac9b7a8b7cdeb6cbc4e3a5e", - "reference": "8b38e10107d15b084ac9b7a8b7cdeb6cbc4e3a5e", + "url": "https://api.github.com/repos/Laravel-Backpack/LogManager/zipball/9c16a0d24db9d385a59583d1a35f4c4c79d7496c", + "reference": "9c16a0d24db9d385a59583d1a35f4c4c79d7496c", "shasum": "" }, "require": { - "backpack/crud": "^6.0" + "backpack/crud": "7.0.0-alpha.1" }, "type": "library", "extra": { @@ -780,31 +823,31 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/LogManager/issues", - "source": "https://github.com/Laravel-Backpack/LogManager/tree/v5.0.2" + "source": "https://github.com/Laravel-Backpack/LogManager/tree/next" }, - "time": "2024-06-24T09:57:03+00:00" + "time": "2025-01-28T10:11:03+00:00" }, { "name": "backpack/medialibrary-uploaders", - "version": "1.2.1", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/medialibrary-uploaders.git", - "reference": "267e1a26d03b7272e8d0c6fd963adf59ecad79ae" + "reference": "d4704c0267160a633242ace0ca6cd7663c6e8897" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/medialibrary-uploaders/zipball/267e1a26d03b7272e8d0c6fd963adf59ecad79ae", - "reference": "267e1a26d03b7272e8d0c6fd963adf59ecad79ae", + "url": "https://api.github.com/repos/Laravel-Backpack/medialibrary-uploaders/zipball/d4704c0267160a633242ace0ca6cd7663c6e8897", + "reference": "d4704c0267160a633242ace0ca6cd7663c6e8897", "shasum": "" }, "require": { - "backpack/crud": "^6.0", - "spatie/laravel-medialibrary": "^10.7|^11.3" + "backpack/crud": "7.0.0-alpha.1", + "spatie/laravel-medialibrary": "^10.7||^11.3" }, "require-dev": { - "orchestra/testbench": "~6|^8.0", - "phpunit/phpunit": "^9.0|^10.0" + "orchestra/testbench": "^10.0", + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { @@ -841,27 +884,27 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/medialibrary-uploaders/issues", - "source": "https://github.com/Laravel-Backpack/medialibrary-uploaders/tree/1.2.1" + "source": "https://github.com/Laravel-Backpack/medialibrary-uploaders/tree/next" }, - "time": "2024-10-04T15:12:40+00:00" + "time": "2025-02-04T15:20:10+00:00" }, { "name": "backpack/menucrud", - "version": "v4.0.2", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/MenuCRUD.git", - "reference": "0a47da951119d93019ff86d15e9629b2640e7f6c" + "reference": "9ed0c2783436c964cb3a87d8506efeb48def5a94" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/MenuCRUD/zipball/0a47da951119d93019ff86d15e9629b2640e7f6c", - "reference": "0a47da951119d93019ff86d15e9629b2640e7f6c", + "url": "https://api.github.com/repos/Laravel-Backpack/MenuCRUD/zipball/9ed0c2783436c964cb3a87d8506efeb48def5a94", + "reference": "9ed0c2783436c964cb3a87d8506efeb48def5a94", "shasum": "" }, "require": { - "backpack/crud": "^6.0", - "backpack/pagemanager": "^3.2" + "backpack/crud": "7.0.0-alpha.1", + "backpack/pagemanager": "dev-next as 3.0" }, "require-dev": { "scrutinizer/ocular": "~1.1", @@ -903,27 +946,27 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/MenuCRUD/issues", - "source": "https://github.com/Laravel-Backpack/MenuCRUD/tree/v4.0.2" + "source": "https://github.com/Laravel-Backpack/MenuCRUD/tree/next" }, - "time": "2024-09-04T14:00:13+00:00" + "time": "2025-01-28T10:15:46+00:00" }, { "name": "backpack/newscrud", - "version": "5.1.0", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/NewsCRUD.git", - "reference": "68fb93b18f59f905472653d30e1834820c725230" + "reference": "cda0fd96b912424f368277f05c3a434c67d031f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/NewsCRUD/zipball/68fb93b18f59f905472653d30e1834820c725230", - "reference": "68fb93b18f59f905472653d30e1834820c725230", + "url": "https://api.github.com/repos/Laravel-Backpack/NewsCRUD/zipball/cda0fd96b912424f368277f05c3a434c67d031f6", + "reference": "cda0fd96b912424f368277f05c3a434c67d031f6", "shasum": "" }, "require": { - "backpack/crud": "^6.0", - "backpack/pro": "^2.0", + "backpack/crud": "7.0.0-alpha.1", + "backpack/pro": "3.0.0-alpha.2", "cviebrock/eloquent-sluggable": "^10.0|^11.0" }, "require-dev": { @@ -967,32 +1010,32 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/NewsCRUD/issues", - "source": "https://github.com/Laravel-Backpack/NewsCRUD/tree/5.1.0" + "source": "https://github.com/Laravel-Backpack/NewsCRUD/tree/next" }, - "time": "2024-03-13T08:56:49+00:00" + "time": "2025-01-28T10:17:24+00:00" }, { "name": "backpack/pagemanager", - "version": "3.3.2", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/PageManager.git", - "reference": "0cdcbab70b6a4e7f3169ee385d30b9c629d052f4" + "reference": "07d93b46098ee3145b50b41dcec4f63c1a59ed67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/PageManager/zipball/0cdcbab70b6a4e7f3169ee385d30b9c629d052f4", - "reference": "0cdcbab70b6a4e7f3169ee385d30b9c629d052f4", + "url": "https://api.github.com/repos/Laravel-Backpack/PageManager/zipball/07d93b46098ee3145b50b41dcec4f63c1a59ed67", + "reference": "07d93b46098ee3145b50b41dcec4f63c1a59ed67", "shasum": "" }, "require": { - "backpack/crud": "^4.0||^5.0||^6.0", - "cviebrock/eloquent-sluggable": "^11.0||^10.0||^9.0||^8.0||^7.0||^6.0||4.8" + "backpack/crud": "7.0.0-alpha.1", + "cviebrock/eloquent-sluggable": "^11.0" }, "require-dev": { - "phpunit/phpunit": "^10.0||^9.0||^7.0", + "phpunit/phpunit": "^10.0", "scrutinizer/ocular": "~1.1", - "squizlabs/php_codesniffer": "~2.3||~3.0" + "squizlabs/php_codesniffer": "~3.0" }, "type": "library", "extra": { @@ -1039,26 +1082,26 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/PageManager/issues", - "source": "https://github.com/Laravel-Backpack/PageManager/tree/3.3.2" + "source": "https://github.com/Laravel-Backpack/PageManager/tree/next" }, - "time": "2024-09-27T09:04:10+00:00" + "time": "2025-01-28T10:19:14+00:00" }, { "name": "backpack/pan-panel", - "version": "1.0.1", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/pan-panel.git", - "reference": "53b976280a0a9e49f6e251aedbec38413257be28" + "reference": "585e747131cf6d8035b599ba9aa03c1958125533" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/pan-panel/zipball/53b976280a0a9e49f6e251aedbec38413257be28", - "reference": "53b976280a0a9e49f6e251aedbec38413257be28", + "url": "https://api.github.com/repos/Laravel-Backpack/pan-panel/zipball/585e747131cf6d8035b599ba9aa03c1958125533", + "reference": "585e747131cf6d8035b599ba9aa03c1958125533", "shasum": "" }, "require": { - "backpack/crud": "^6.0", + "backpack/crud": "7.0.0-alpha.1", "panphp/pan": "^0.1.7" }, "type": "library", @@ -1086,27 +1129,27 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/pan-panel/issues", - "source": "https://github.com/Laravel-Backpack/pan-panel/tree/1.0.1" + "source": "https://github.com/Laravel-Backpack/pan-panel/tree/next" }, - "time": "2024-10-31T18:45:54+00:00" + "time": "2025-01-28T10:20:51+00:00" }, { "name": "backpack/permissionmanager", - "version": "7.2.1", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/PermissionManager.git", - "reference": "426367264081e79b9360e53e901ca161e3140188" + "reference": "28582fe2cebcaa845dfca7b8d38b0641fa3239fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/PermissionManager/zipball/426367264081e79b9360e53e901ca161e3140188", - "reference": "426367264081e79b9360e53e901ca161e3140188", + "url": "https://api.github.com/repos/Laravel-Backpack/PermissionManager/zipball/28582fe2cebcaa845dfca7b8d38b0641fa3239fb", + "reference": "28582fe2cebcaa845dfca7b8d38b0641fa3239fb", "shasum": "" }, "require": { - "backpack/crud": "^6.0", - "spatie/laravel-permission": "^6.4||^5.0||^4.0||^3.0" + "backpack/crud": "7.0.0-alpha.1", + "spatie/laravel-permission": "^6.4" }, "type": "library", "extra": { @@ -1156,30 +1199,31 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/PermissionManager/issues", - "source": "https://github.com/Laravel-Backpack/PermissionManager/tree/7.2.1" + "source": "https://github.com/Laravel-Backpack/PermissionManager/tree/next" }, - "time": "2024-04-25T10:16:11+00:00" + "time": "2025-01-28T10:22:48+00:00" }, { "name": "backpack/pro", - "version": "2.2.29", + "version": "3.0.0-alpha.2", "source": { "type": "git", "url": "git@github.com:Laravel-Backpack/PRO.git", - "reference": "d3a3969ceeaf8239eba5dac813409ff4f502ee4d" + "reference": "4d2e96ffb4f2edd664b59c908ab042965015b06e" }, "dist": { "type": "zip", - "url": "https://repo.backpackforlaravel.com/dist/backpack/pro/backpack-pro-d3a3969ceeaf8239eba5dac813409ff4f502ee4d-zip-621a35.zip", - "reference": "d3a3969ceeaf8239eba5dac813409ff4f502ee4d", - "shasum": "b741aa9539ca98f0f5bd2841e318f764a11ffeef" + "url": "https://repo.backpackforlaravel.com/dist/backpack/pro/backpack-pro-4d2e96ffb4f2edd664b59c908ab042965015b06e-zip-faee47.zip", + "reference": "4d2e96ffb4f2edd664b59c908ab042965015b06e", + "shasum": "e449e81303549e81677ea5a07d323f495e7e4691" }, "require": { - "backpack/crud": "^6.0.1" + "backpack/crud": "7.0.0-alpha.1" }, "require-dev": { - "orchestra/testbench": "~5|~6", - "phpunit/phpunit": "~9.0" + "backpack/medialibrary-uploaders": "dev-next as 1.0", + "orchestra/testbench": "^8.0|^9.0|^10.0", + "phpunit/phpunit": "^10.0|^11.0" }, "type": "library", "extra": { @@ -1196,7 +1240,9 @@ }, "autoload-dev": { "psr-4": { - "Backpack\\Pro\\Tests\\": "tests" + "Backpack\\Pro\\Tests\\": "tests", + "Backpack\\CRUD\\Tests\\": "vendor/backpack/crud/tests", + "Backpack\\MediaLibraryUploaders\\Tests\\": "vendor/backpack/medialibrary-uploaders/tests" } }, "scripts": { @@ -1224,27 +1270,27 @@ "Pro" ], "support": { - "source": "https://github.com/Laravel-Backpack/PRO/tree/2.2.29", + "source": "https://github.com/Laravel-Backpack/PRO/tree/3.0.0-alpha.2", "issues": "https://github.com/Laravel-Backpack/PRO/issues" }, - "time": "2024-12-04T16:19:06+00:00" + "time": "2025-01-27T13:54:23+00:00" }, { "name": "backpack/revise-operation", - "version": "2.0.0", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/revise-operation.git", - "reference": "392539c99e4999ba8346b6e9bcd1c075572fd953" + "reference": "ac2e933c876f6224ec506ef30accf2764df8b51d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/revise-operation/zipball/392539c99e4999ba8346b6e9bcd1c075572fd953", - "reference": "392539c99e4999ba8346b6e9bcd1c075572fd953", + "url": "https://api.github.com/repos/Laravel-Backpack/revise-operation/zipball/ac2e933c876f6224ec506ef30accf2764df8b51d", + "reference": "ac2e933c876f6224ec506ef30accf2764df8b51d", "shasum": "" }, "require": { - "backpack/crud": "^6.0", + "backpack/crud": "7.0.0-alpha.1", "venturecraft/revisionable": "1.*" }, "type": "library", @@ -1289,29 +1335,29 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/revise-operation/issues", - "source": "https://github.com/Laravel-Backpack/revise-operation/tree/2.0.0" + "source": "https://github.com/Laravel-Backpack/revise-operation/tree/next" }, - "time": "2023-07-01T06:33:51+00:00" + "time": "2025-01-28T10:23:53+00:00" }, { "name": "backpack/settings", - "version": "3.1.1", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/Settings.git", - "reference": "1bbb4591da4f601eec6d65e0e93c56cf29925c29" + "reference": "1bde0603d4c1acdd50c4b624fa3963a19068d26a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/Settings/zipball/1bbb4591da4f601eec6d65e0e93c56cf29925c29", - "reference": "1bbb4591da4f601eec6d65e0e93c56cf29925c29", + "url": "https://api.github.com/repos/Laravel-Backpack/Settings/zipball/1bde0603d4c1acdd50c4b624fa3963a19068d26a", + "reference": "1bde0603d4c1acdd50c4b624fa3963a19068d26a", "shasum": "" }, "require": { - "backpack/crud": "^4.0|^5.0|^6.0" + "backpack/crud": "7.0.0-alpha.1" }, "require-dev": { - "phpunit/phpunit": "^9.0||^7.0", + "phpunit/phpunit": "^10", "scrutinizer/ocular": "~1.1" }, "type": "library", @@ -1357,30 +1403,30 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/Settings/issues", - "source": "https://github.com/Laravel-Backpack/Settings/tree/3.1.1" + "source": "https://github.com/Laravel-Backpack/Settings/tree/next" }, - "time": "2024-04-02T15:52:16+00:00" + "time": "2025-01-28T10:24:57+00:00" }, { "name": "backpack/theme-coreuiv2", - "version": "1.2.7", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/theme-coreuiv2.git", - "reference": "994bba93d4d208c8eef45cc8f4288d44281910ae" + "reference": "6eefa22d0c38f86926f8508e5b8cd80d888fbd99" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/theme-coreuiv2/zipball/994bba93d4d208c8eef45cc8f4288d44281910ae", - "reference": "994bba93d4d208c8eef45cc8f4288d44281910ae", + "url": "https://api.github.com/repos/Laravel-Backpack/theme-coreuiv2/zipball/6eefa22d0c38f86926f8508e5b8cd80d888fbd99", + "reference": "6eefa22d0c38f86926f8508e5b8cd80d888fbd99", "shasum": "" }, "require": { - "backpack/crud": "^6.2.1" + "backpack/crud": "7.0.0-alpha.1" }, "require-dev": { - "orchestra/testbench": "~5|~6", - "phpunit/phpunit": "~9.0" + "orchestra/testbench": "^9||^8", + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { @@ -1417,30 +1463,30 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/theme-coreuiv2/issues", - "source": "https://github.com/Laravel-Backpack/theme-coreuiv2/tree/1.2.7" + "source": "https://github.com/Laravel-Backpack/theme-coreuiv2/tree/next" }, - "time": "2024-12-20T16:54:28+00:00" + "time": "2025-01-28T10:28:09+00:00" }, { "name": "backpack/theme-coreuiv4", - "version": "1.1.5", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/theme-coreuiv4.git", - "reference": "31655325d6022444c732e31e16339cd2c2f476a7" + "reference": "5e0f9e6ba740f010fa9c15b0b6f9c1d8abad96a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/theme-coreuiv4/zipball/31655325d6022444c732e31e16339cd2c2f476a7", - "reference": "31655325d6022444c732e31e16339cd2c2f476a7", + "url": "https://api.github.com/repos/Laravel-Backpack/theme-coreuiv4/zipball/5e0f9e6ba740f010fa9c15b0b6f9c1d8abad96a1", + "reference": "5e0f9e6ba740f010fa9c15b0b6f9c1d8abad96a1", "shasum": "" }, "require": { - "backpack/crud": "^6.2.1" + "backpack/crud": "7.0.0-alpha.1" }, "require-dev": { - "orchestra/testbench": "~5|~6", - "phpunit/phpunit": "~9.0" + "orchestra/testbench": "^8||^9", + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { @@ -1487,30 +1533,30 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/theme-coreuiv4/issues", - "source": "https://github.com/Laravel-Backpack/theme-coreuiv4/tree/1.1.5" + "source": "https://github.com/Laravel-Backpack/theme-coreuiv4/tree/next" }, - "time": "2024-12-20T16:55:26+00:00" + "time": "2025-01-28T10:36:58+00:00" }, { "name": "backpack/theme-tabler", - "version": "1.2.17", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/theme-tabler.git", - "reference": "d6bd4309ea77b0a8680f41e7f50e64b0ee032c68" + "reference": "92d0416e3b025ad6e08bb023445458ffa89b8fbb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/theme-tabler/zipball/d6bd4309ea77b0a8680f41e7f50e64b0ee032c68", - "reference": "d6bd4309ea77b0a8680f41e7f50e64b0ee032c68", + "url": "https://api.github.com/repos/Laravel-Backpack/theme-tabler/zipball/92d0416e3b025ad6e08bb023445458ffa89b8fbb", + "reference": "92d0416e3b025ad6e08bb023445458ffa89b8fbb", "shasum": "" }, "require": { - "backpack/crud": "^6.2.1" + "backpack/crud": "7.0.0-alpha.1" }, "require-dev": { - "orchestra/testbench": "~5|~6", - "phpunit/phpunit": "~9.0" + "orchestra/testbench": "^8||^9", + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { @@ -1560,26 +1606,67 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/theme-tabler/issues", - "source": "https://github.com/Laravel-Backpack/theme-tabler/tree/1.2.17" + "source": "https://github.com/Laravel-Backpack/theme-tabler/tree/next" + }, + "time": "2025-01-28T10:37:52+00:00" + }, + { + "name": "backpack/tinymce-field", + "version": "dev-next", + "source": { + "type": "git", + "url": "git@github.com:Laravel-Backpack/tinymce-field.git", + "reference": "3c986f421dc4040afde16a35461b6b21162772f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Laravel-Backpack/tinymce-field/zipball/3c986f421dc4040afde16a35461b6b21162772f6", + "reference": "3c986f421dc4040afde16a35461b6b21162772f6", + "shasum": "" + }, + "require": { + "backpack/crud": "7.0.0-alpha.1" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Backpack\\TinyMCEField\\BackpackTinyMCEFieldProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Backpack\\TinyMCEField\\": "src/" + } + }, + "description": "TinyMCE field for Backpack", + "keywords": [ + "backpack", + "laravel" + ], + "support": { + "source": "https://github.com/Laravel-Backpack/tinymce-field/tree/next", + "issues": "https://github.com/Laravel-Backpack/tinymce-field/issues" }, - "time": "2024-12-26T10:41:55+00:00" + "time": "2025-01-28T10:40:35+00:00" }, { "name": "backpack/translation-manager", - "version": "1.0.5", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/translation-manager.git", - "reference": "65484c821e62c3130f83aa4d0dd6225061238fa6" + "reference": "2e74b7b555d175a630a7fd0e289fac2dc0987038" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/translation-manager/zipball/65484c821e62c3130f83aa4d0dd6225061238fa6", - "reference": "65484c821e62c3130f83aa4d0dd6225061238fa6", + "url": "https://api.github.com/repos/Laravel-Backpack/translation-manager/zipball/2e74b7b555d175a630a7fd0e289fac2dc0987038", + "reference": "2e74b7b555d175a630a7fd0e289fac2dc0987038", "shasum": "" }, "require": { - "backpack/crud": "^6.7", + "backpack/crud": "7.0.0-alpha.1", "calebporzio/sushi": "^2.4", "outhebox/blade-flags": "^1.2", "spatie/laravel-translation-loader": "^2.8" @@ -1629,9 +1716,9 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/translation-manager/issues", - "source": "https://github.com/Laravel-Backpack/translation-manager/tree/1.0.5" + "source": "https://github.com/Laravel-Backpack/translation-manager/tree/next" }, - "time": "2024-12-02T12:08:32+00:00" + "time": "2025-01-27T15:56:28+00:00" }, { "name": "balping/json-raw-encoder", @@ -2497,16 +2584,16 @@ }, { "name": "doctrine/dbal", - "version": "4.2.1", + "version": "4.2.2", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0" + "reference": "19a2b7deb5fe8c2df0ff817ecea305e50acb62ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/dadd35300837a3a2184bd47d403333b15d0a9bd0", - "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/19a2b7deb5fe8c2df0ff817ecea305e50acb62ec", + "reference": "19a2b7deb5fe8c2df0ff817ecea305e50acb62ec", "shasum": "" }, "require": { @@ -2519,16 +2606,14 @@ "doctrine/coding-standard": "12.0.0", "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2023.2", - "phpstan/phpstan": "1.12.6", - "phpstan/phpstan-phpunit": "1.4.0", - "phpstan/phpstan-strict-rules": "^1.6", - "phpunit/phpunit": "10.5.30", - "psalm/plugin-phpunit": "0.19.0", + "phpstan/phpstan": "2.1.1", + "phpstan/phpstan-phpunit": "2.0.3", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "10.5.39", "slevomat/coding-standard": "8.13.1", "squizlabs/php_codesniffer": "3.10.2", "symfony/cache": "^6.3.8|^7.0", - "symfony/console": "^5.4|^6.3|^7.0", - "vimeo/psalm": "5.25.0" + "symfony/console": "^5.4|^6.3|^7.0" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." @@ -2585,7 +2670,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/4.2.1" + "source": "https://github.com/doctrine/dbal/tree/4.2.2" }, "funding": [ { @@ -2601,7 +2686,7 @@ "type": "tidelift" } ], - "time": "2024-10-10T18:01:27+00:00" + "time": "2025-01-16T08:40:56+00:00" }, { "name": "doctrine/deprecations", @@ -3469,16 +3554,16 @@ }, { "name": "guzzlehttp/uri-template", - "version": "v1.0.3", + "version": "v1.0.4", "source": { "type": "git", "url": "https://github.com/guzzle/uri-template.git", - "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c" + "reference": "30e286560c137526eccd4ce21b2de477ab0676d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c", - "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2", + "reference": "30e286560c137526eccd4ce21b2de477ab0676d2", "shasum": "" }, "require": { @@ -3535,7 +3620,7 @@ ], "support": { "issues": "https://github.com/guzzle/uri-template/issues", - "source": "https://github.com/guzzle/uri-template/tree/v1.0.3" + "source": "https://github.com/guzzle/uri-template/tree/v1.0.4" }, "funding": [ { @@ -3551,7 +3636,7 @@ "type": "tidelift" } ], - "time": "2023-12-03T19:50:20+00:00" + "time": "2025-02-03T10:55:03+00:00" }, { "name": "intervention/image", @@ -3639,16 +3724,16 @@ }, { "name": "laravel/framework", - "version": "v11.37.0", + "version": "v11.41.3", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "6cb103d2024b087eae207654b3f4b26646119ba5" + "reference": "3ef433d5865f30a19b6b1be247586068399b59cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/6cb103d2024b087eae207654b3f4b26646119ba5", - "reference": "6cb103d2024b087eae207654b3f4b26646119ba5", + "url": "https://api.github.com/repos/laravel/framework/zipball/3ef433d5865f30a19b6b1be247586068399b59cc", + "reference": "3ef433d5865f30a19b6b1be247586068399b59cc", "shasum": "" }, "require": { @@ -3674,7 +3759,7 @@ "league/flysystem-local": "^3.25.1", "league/uri": "^7.5.1", "monolog/monolog": "^3.0", - "nesbot/carbon": "^2.72.2|^3.4", + "nesbot/carbon": "^2.72.6|^3.8.4", "nunomaduro/termwind": "^2.0", "php": "^8.2", "psr/container": "^1.1.1|^2.0.1", @@ -3749,6 +3834,7 @@ "fakerphp/faker": "^1.24", "guzzlehttp/promises": "^2.0.3", "guzzlehttp/psr7": "^2.4", + "laravel/pint": "^1.18", "league/flysystem-aws-s3-v3": "^3.25.1", "league/flysystem-ftp": "^3.25.1", "league/flysystem-path-prefixing": "^3.25.1", @@ -3849,24 +3935,24 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-01-02T20:10:21+00:00" + "time": "2025-01-30T13:25:22+00:00" }, { "name": "laravel/legacy-factories", - "version": "v1.4.0", + "version": "v1.4.1", "source": { "type": "git", "url": "https://github.com/laravel/legacy-factories.git", - "reference": "6cb79f668fc36b8b396ada1da3ba45867889c30f" + "reference": "cd0f8c77d116bac121e9779fcff1f71801aaac50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/legacy-factories/zipball/6cb79f668fc36b8b396ada1da3ba45867889c30f", - "reference": "6cb79f668fc36b8b396ada1da3ba45867889c30f", + "url": "https://api.github.com/repos/laravel/legacy-factories/zipball/cd0f8c77d116bac121e9779fcff1f71801aaac50", + "reference": "cd0f8c77d116bac121e9779fcff1f71801aaac50", "shasum": "" }, "require": { - "illuminate/macroable": "^8.0|^9.0|^10.0|^11.0", + "illuminate/macroable": "^8.0|^9.0|^10.0|^11.0|^12.0", "php": "^7.3|^8.0", "symfony/finder": "^3.4|^4.0|^5.0|^6.0|^7.0" }, @@ -3905,20 +3991,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-01-15T13:55:14+00:00" + "time": "2025-01-24T15:41:36+00:00" }, { "name": "laravel/prompts", - "version": "v0.3.2", + "version": "v0.3.4", "source": { "type": "git", "url": "https://github.com/laravel/prompts.git", - "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f" + "reference": "abeaa2ba4294247d5409490d1ca1bc6248087011" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/prompts/zipball/0e0535747c6b8d6d10adca8b68293cf4517abb0f", - "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f", + "url": "https://api.github.com/repos/laravel/prompts/zipball/abeaa2ba4294247d5409490d1ca1bc6248087011", + "reference": "abeaa2ba4294247d5409490d1ca1bc6248087011", "shasum": "" }, "require": { @@ -3932,7 +4018,7 @@ "laravel/framework": ">=10.17.0 <10.25.0" }, "require-dev": { - "illuminate/collections": "^10.0|^11.0", + "illuminate/collections": "^10.0|^11.0|^12.0", "mockery/mockery": "^1.5", "pestphp/pest": "^2.3|^3.4", "phpstan/phpstan": "^1.11", @@ -3962,31 +4048,31 @@ "description": "Add beautiful and user-friendly forms to your command-line applications.", "support": { "issues": "https://github.com/laravel/prompts/issues", - "source": "https://github.com/laravel/prompts/tree/v0.3.2" + "source": "https://github.com/laravel/prompts/tree/v0.3.4" }, - "time": "2024-11-12T14:59:47+00:00" + "time": "2025-01-24T15:41:01+00:00" }, { "name": "laravel/serializable-closure", - "version": "v2.0.1", + "version": "v2.0.2", "source": { "type": "git", "url": "https://github.com/laravel/serializable-closure.git", - "reference": "613b2d4998f85564d40497e05e89cb6d9bd1cbe8" + "reference": "2e1a362527783bcab6c316aad51bf36c5513ae44" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/613b2d4998f85564d40497e05e89cb6d9bd1cbe8", - "reference": "613b2d4998f85564d40497e05e89cb6d9bd1cbe8", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/2e1a362527783bcab6c316aad51bf36c5513ae44", + "reference": "2e1a362527783bcab6c316aad51bf36c5513ae44", "shasum": "" }, "require": { "php": "^8.1" }, "require-dev": { - "illuminate/support": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0|^12.0", "nesbot/carbon": "^2.67|^3.0", - "pestphp/pest": "^2.36", + "pestphp/pest": "^2.36|^3.0", "phpstan/phpstan": "^2.0", "symfony/var-dumper": "^6.2.0|^7.0.0" }, @@ -4025,26 +4111,26 @@ "issues": "https://github.com/laravel/serializable-closure/issues", "source": "https://github.com/laravel/serializable-closure" }, - "time": "2024-12-16T15:26:28+00:00" + "time": "2025-01-24T15:42:37+00:00" }, { "name": "laravel/tinker", - "version": "v2.10.0", + "version": "v2.10.1", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5" + "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5", - "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5", + "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3", + "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3", "shasum": "" }, "require": { - "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^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", "php": "^7.2.5|^8.0", "psy/psysh": "^0.11.1|^0.12.0", "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" @@ -4052,10 +4138,10 @@ "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^8.5.8|^9.3.3" + "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0" }, "suggest": { - "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)." + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)." }, "type": "library", "extra": { @@ -4089,9 +4175,9 @@ ], "support": { "issues": "https://github.com/laravel/tinker/issues", - "source": "https://github.com/laravel/tinker/tree/v2.10.0" + "source": "https://github.com/laravel/tinker/tree/v2.10.1" }, - "time": "2024-09-23T13:32:56+00:00" + "time": "2025-01-27T14:24:01+00:00" }, { "name": "league/commonmark", @@ -4701,31 +4787,32 @@ }, { "name": "maennchen/zipstream-php", - "version": "3.1.1", + "version": "3.1.2", "source": { "type": "git", "url": "https://github.com/maennchen/ZipStream-PHP.git", - "reference": "6187e9cc4493da94b9b63eb2315821552015fca9" + "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/6187e9cc4493da94b9b63eb2315821552015fca9", - "reference": "6187e9cc4493da94b9b63eb2315821552015fca9", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f", + "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f", "shasum": "" }, "require": { "ext-mbstring": "*", "ext-zlib": "*", - "php-64bit": "^8.1" + "php-64bit": "^8.2" }, "require-dev": { + "brianium/paratest": "^7.7", "ext-zip": "*", "friendsofphp/php-cs-fixer": "^3.16", "guzzlehttp/guzzle": "^7.5", "mikey179/vfsstream": "^1.6", "php-coveralls/php-coveralls": "^2.5", - "phpunit/phpunit": "^10.0", - "vimeo/psalm": "^5.0" + "phpunit/phpunit": "^11.0", + "vimeo/psalm": "^6.0" }, "suggest": { "guzzlehttp/psr7": "^2.4", @@ -4766,7 +4853,7 @@ ], "support": { "issues": "https://github.com/maennchen/ZipStream-PHP/issues", - "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.1" + "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2" }, "funding": [ { @@ -4774,7 +4861,7 @@ "type": "github" } ], - "time": "2024-10-10T12:33:01+00:00" + "time": "2025-01-27T12:07:53+00:00" }, { "name": "mews/purifier", @@ -5028,12 +5115,12 @@ "version": "3.8.4", "source": { "type": "git", - "url": "https://github.com/briannesbitt/Carbon.git", + "url": "https://github.com/CarbonPHP/carbon.git", "reference": "129700ed449b1f02d70272d2ac802357c8c30c58" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/129700ed449b1f02d70272d2ac802357c8c30c58", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/129700ed449b1f02d70272d2ac802357c8c30c58", "reference": "129700ed449b1f02d70272d2ac802357c8c30c58", "shasum": "" }, @@ -6841,16 +6928,16 @@ }, { "name": "spatie/image", - "version": "3.7.4", + "version": "3.8.0", "source": { "type": "git", "url": "https://github.com/spatie/image.git", - "reference": "d72d1ae07f91a3c1230e064acd4fd8c334ab237b" + "reference": "06cf293f66c833704935ba18e16c784d7e8433a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/image/zipball/d72d1ae07f91a3c1230e064acd4fd8c334ab237b", - "reference": "d72d1ae07f91a3c1230e064acd4fd8c334ab237b", + "url": "https://api.github.com/repos/spatie/image/zipball/06cf293f66c833704935ba18e16c784d7e8433a7", + "reference": "06cf293f66c833704935ba18e16c784d7e8433a7", "shasum": "" }, "require": { @@ -6898,7 +6985,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/image/tree/3.7.4" + "source": "https://github.com/spatie/image/tree/3.8.0" }, "funding": [ { @@ -6910,7 +6997,7 @@ "type": "github" } ], - "time": "2024-10-07T09:03:34+00:00" + "time": "2025-01-17T10:19:44+00:00" }, { "name": "spatie/image-optimizer", @@ -7060,16 +7147,16 @@ }, { "name": "spatie/laravel-backup", - "version": "8.8.2", + "version": "9.2.5", "source": { "type": "git", "url": "https://github.com/spatie/laravel-backup.git", - "reference": "5b672713283703a74c629ccd67b1d77eb57e24b9" + "reference": "50effa86d6614282da747ae1194912e0ed273daf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/5b672713283703a74c629ccd67b1d77eb57e24b9", - "reference": "5b672713283703a74c629ccd67b1d77eb57e24b9", + "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/50effa86d6614282da747ae1194912e0ed273daf", + "reference": "50effa86d6614282da747ae1194912e0ed273daf", "shasum": "" }, "require": { @@ -7081,8 +7168,8 @@ "illuminate/notifications": "^10.10.0|^11.0", "illuminate/support": "^10.10.0|^11.0", "league/flysystem": "^3.0", - "php": "^8.1", - "spatie/db-dumper": "^3.0", + "php": "^8.2", + "spatie/db-dumper": "^3.7", "spatie/laravel-package-tools": "^1.6.2", "spatie/laravel-signal-aware-command": "^1.2|^2.0", "spatie/temporary-directory": "^2.0", @@ -7100,7 +7187,8 @@ "pestphp/pest": "^1.20|^2.0", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.1" + "phpstan/phpstan-phpunit": "^1.1", + "rector/rector": "^1.1" }, "suggest": { "laravel/slack-notification-channel": "Required for sending notifications via Slack" @@ -7143,7 +7231,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-backup/issues", - "source": "https://github.com/spatie/laravel-backup/tree/8.8.2" + "source": "https://github.com/spatie/laravel-backup/tree/9.2.5" }, "funding": [ { @@ -7155,7 +7243,7 @@ "type": "other" } ], - "time": "2024-08-07T11:07:52+00:00" + "time": "2025-01-31T11:14:27+00:00" }, { "name": "spatie/laravel-ignition", @@ -7250,16 +7338,16 @@ }, { "name": "spatie/laravel-medialibrary", - "version": "11.11.1", + "version": "11.12.3", "source": { "type": "git", "url": "https://github.com/spatie/laravel-medialibrary.git", - "reference": "1c4950237a5f2876102b36ded89a00bb6ea96c09" + "reference": "f7ff95dcee59f18bd29187193b02bdb3d746f975" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/1c4950237a5f2876102b36ded89a00bb6ea96c09", - "reference": "1c4950237a5f2876102b36ded89a00bb6ea96c09", + "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/f7ff95dcee59f18bd29187193b02bdb3d746f975", + "reference": "f7ff95dcee59f18bd29187193b02bdb3d746f975", "shasum": "" }, "require": { @@ -7343,7 +7431,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-medialibrary/issues", - "source": "https://github.com/spatie/laravel-medialibrary/tree/11.11.1" + "source": "https://github.com/spatie/laravel-medialibrary/tree/11.12.3" }, "funding": [ { @@ -7355,31 +7443,31 @@ "type": "github" } ], - "time": "2024-12-30T10:16:02+00:00" + "time": "2025-02-06T11:56:04+00:00" }, { "name": "spatie/laravel-package-tools", - "version": "1.18.0", + "version": "1.19.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-package-tools.git", - "reference": "8332205b90d17164913244f4a8e13ab7e6761d29" + "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/8332205b90d17164913244f4a8e13ab7e6761d29", - "reference": "8332205b90d17164913244f4a8e13ab7e6761d29", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa", + "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa", "shasum": "" }, "require": { - "illuminate/contracts": "^9.28|^10.0|^11.0", + "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0", "php": "^8.0" }, "require-dev": { "mockery/mockery": "^1.5", - "orchestra/testbench": "^7.7|^8.0|^9.0", - "pestphp/pest": "^1.22|^2", - "phpunit/phpunit": "^9.5.24|^10.5", + "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0", + "pestphp/pest": "^1.23|^2.1|^3.1", + "phpunit/phpunit": "^9.5.24|^10.5|^11.5", "spatie/pest-plugin-test-time": "^1.1|^2.2" }, "type": "library", @@ -7407,7 +7495,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-package-tools/issues", - "source": "https://github.com/spatie/laravel-package-tools/tree/1.18.0" + "source": "https://github.com/spatie/laravel-package-tools/tree/1.19.0" }, "funding": [ { @@ -7415,34 +7503,34 @@ "type": "github" } ], - "time": "2024-12-30T13:13:39+00:00" + "time": "2025-02-06T14:58:20+00:00" }, { "name": "spatie/laravel-permission", - "version": "6.10.1", + "version": "6.13.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-permission.git", - "reference": "8bb69d6d67387f7a00d93a2f5fab98860f06e704" + "reference": "bb3ad222d65ec804c219cc52a8b54f5af2e1636a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/8bb69d6d67387f7a00d93a2f5fab98860f06e704", - "reference": "8bb69d6d67387f7a00d93a2f5fab98860f06e704", + "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/bb3ad222d65ec804c219cc52a8b54f5af2e1636a", + "reference": "bb3ad222d65ec804c219cc52a8b54f5af2e1636a", "shasum": "" }, "require": { - "illuminate/auth": "^8.12|^9.0|^10.0|^11.0", - "illuminate/container": "^8.12|^9.0|^10.0|^11.0", - "illuminate/contracts": "^8.12|^9.0|^10.0|^11.0", - "illuminate/database": "^8.12|^9.0|^10.0|^11.0", + "illuminate/auth": "^8.12|^9.0|^10.0|^11.0|^12.0", + "illuminate/container": "^8.12|^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^8.12|^9.0|^10.0|^11.0|^12.0", + "illuminate/database": "^8.12|^9.0|^10.0|^11.0|^12.0", "php": "^8.0" }, "require-dev": { - "larastan/larastan": "^1.0|^2.0", "laravel/passport": "^11.0|^12.0", - "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0", - "phpunit/phpunit": "^9.4|^10.1" + "laravel/pint": "^1.0", + "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0|^10.0", + "phpunit/phpunit": "^9.4|^10.1|^11.5" }, "type": "library", "extra": { @@ -7490,7 +7578,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-permission/issues", - "source": "https://github.com/spatie/laravel-permission/tree/6.10.1" + "source": "https://github.com/spatie/laravel-permission/tree/6.13.0" }, "funding": [ { @@ -7498,20 +7586,20 @@ "type": "github" } ], - "time": "2024-11-08T18:45:41+00:00" + "time": "2025-02-05T15:42:48+00:00" }, { "name": "spatie/laravel-signal-aware-command", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/spatie/laravel-signal-aware-command.git", - "reference": "49a5e671c3a3fd992187a777d01385fc6a84759d" + "reference": "5af15853cf593093e6b1abae3cca446ba59c30e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-signal-aware-command/zipball/49a5e671c3a3fd992187a777d01385fc6a84759d", - "reference": "49a5e671c3a3fd992187a777d01385fc6a84759d", + "url": "https://api.github.com/repos/spatie/laravel-signal-aware-command/zipball/5af15853cf593093e6b1abae3cca446ba59c30e8", + "reference": "5af15853cf593093e6b1abae3cca446ba59c30e8", "shasum": "" }, "require": { @@ -7565,7 +7653,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-signal-aware-command/issues", - "source": "https://github.com/spatie/laravel-signal-aware-command/tree/2.0.0" + "source": "https://github.com/spatie/laravel-signal-aware-command/tree/2.0.1" }, "funding": [ { @@ -7573,20 +7661,20 @@ "type": "github" } ], - "time": "2024-02-05T13:37:25+00:00" + "time": "2025-02-05T08:24:50+00:00" }, { "name": "spatie/laravel-translatable", - "version": "6.9.3", + "version": "6.10.2", "source": { "type": "git", "url": "https://github.com/spatie/laravel-translatable.git", - "reference": "5f0712701a71054ba9bd6693808c4748f1f4ebda" + "reference": "6150f6d55f4712279883d56490406f8a92a9c72a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/5f0712701a71054ba9bd6693808c4748f1f4ebda", - "reference": "5f0712701a71054ba9bd6693808c4748f1f4ebda", + "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/6150f6d55f4712279883d56490406f8a92a9c72a", + "reference": "6150f6d55f4712279883d56490406f8a92a9c72a", "shasum": "" }, "require": { @@ -7648,7 +7736,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-translatable/issues", - "source": "https://github.com/spatie/laravel-translatable/tree/6.9.3" + "source": "https://github.com/spatie/laravel-translatable/tree/6.10.2" }, "funding": [ { @@ -7656,7 +7744,7 @@ "type": "github" } ], - "time": "2024-12-16T12:58:20+00:00" + "time": "2025-02-03T08:49:09+00:00" }, { "name": "spatie/laravel-translation-loader", @@ -7730,16 +7818,16 @@ }, { "name": "spatie/temporary-directory", - "version": "2.2.1", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/spatie/temporary-directory.git", - "reference": "76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a" + "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a", - "reference": "76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a", + "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/580eddfe9a0a41a902cac6eeb8f066b42e65a32b", + "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b", "shasum": "" }, "require": { @@ -7775,7 +7863,7 @@ ], "support": { "issues": "https://github.com/spatie/temporary-directory/issues", - "source": "https://github.com/spatie/temporary-directory/tree/2.2.1" + "source": "https://github.com/spatie/temporary-directory/tree/2.3.0" }, "funding": [ { @@ -7787,7 +7875,7 @@ "type": "github" } ], - "time": "2023-12-25T11:46:58+00:00" + "time": "2025-01-13T13:04:43+00:00" }, { "name": "studio-42/elfinder", @@ -8158,16 +8246,16 @@ }, { "name": "symfony/error-handler", - "version": "v7.2.1", + "version": "v7.2.3", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "6150b89186573046167796fa5f3f76601d5145f8" + "reference": "959a74d044a6db21f4caa6d695648dcb5584cb49" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/6150b89186573046167796fa5f3f76601d5145f8", - "reference": "6150b89186573046167796fa5f3f76601d5145f8", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/959a74d044a6db21f4caa6d695648dcb5584cb49", + "reference": "959a74d044a6db21f4caa6d695648dcb5584cb49", "shasum": "" }, "require": { @@ -8213,7 +8301,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v7.2.1" + "source": "https://github.com/symfony/error-handler/tree/v7.2.3" }, "funding": [ { @@ -8229,7 +8317,7 @@ "type": "tidelift" } ], - "time": "2024-12-07T08:50:44+00:00" + "time": "2025-01-07T09:39:55+00:00" }, { "name": "symfony/event-dispatcher", @@ -8453,16 +8541,16 @@ }, { "name": "symfony/http-foundation", - "version": "v7.2.2", + "version": "v7.2.3", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "62d1a43796ca3fea3f83a8470dfe63a4af3bc588" + "reference": "ee1b504b8926198be89d05e5b6fc4c3810c090f0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/62d1a43796ca3fea3f83a8470dfe63a4af3bc588", - "reference": "62d1a43796ca3fea3f83a8470dfe63a4af3bc588", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ee1b504b8926198be89d05e5b6fc4c3810c090f0", + "reference": "ee1b504b8926198be89d05e5b6fc4c3810c090f0", "shasum": "" }, "require": { @@ -8511,7 +8599,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v7.2.2" + "source": "https://github.com/symfony/http-foundation/tree/v7.2.3" }, "funding": [ { @@ -8527,20 +8615,20 @@ "type": "tidelift" } ], - "time": "2024-12-30T19:00:17+00:00" + "time": "2025-01-17T10:56:55+00:00" }, { "name": "symfony/http-kernel", - "version": "v7.2.2", + "version": "v7.2.3", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "3c432966bd8c7ec7429663105f5a02d7e75b4306" + "reference": "caae9807f8e25a9b43ce8cc6fafab6cf91f0cc9b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3c432966bd8c7ec7429663105f5a02d7e75b4306", - "reference": "3c432966bd8c7ec7429663105f5a02d7e75b4306", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/caae9807f8e25a9b43ce8cc6fafab6cf91f0cc9b", + "reference": "caae9807f8e25a9b43ce8cc6fafab6cf91f0cc9b", "shasum": "" }, "require": { @@ -8625,7 +8713,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v7.2.2" + "source": "https://github.com/symfony/http-kernel/tree/v7.2.3" }, "funding": [ { @@ -8641,20 +8729,20 @@ "type": "tidelift" } ], - "time": "2024-12-31T14:59:40+00:00" + "time": "2025-01-29T07:40:13+00:00" }, { "name": "symfony/mailer", - "version": "v7.2.0", + "version": "v7.2.3", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "e4d358702fb66e4c8a2af08e90e7271a62de39cc" + "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/e4d358702fb66e4c8a2af08e90e7271a62de39cc", - "reference": "e4d358702fb66e4c8a2af08e90e7271a62de39cc", + "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3", + "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3", "shasum": "" }, "require": { @@ -8705,7 +8793,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v7.2.0" + "source": "https://github.com/symfony/mailer/tree/v7.2.3" }, "funding": [ { @@ -8721,20 +8809,20 @@ "type": "tidelift" } ], - "time": "2024-11-25T15:21:05+00:00" + "time": "2025-01-27T11:08:17+00:00" }, { "name": "symfony/mime", - "version": "v7.2.1", + "version": "v7.2.3", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "7f9617fcf15cb61be30f8b252695ed5e2bfac283" + "reference": "2fc3b4bd67e4747e45195bc4c98bea4628476204" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/7f9617fcf15cb61be30f8b252695ed5e2bfac283", - "reference": "7f9617fcf15cb61be30f8b252695ed5e2bfac283", + "url": "https://api.github.com/repos/symfony/mime/zipball/2fc3b4bd67e4747e45195bc4c98bea4628476204", + "reference": "2fc3b4bd67e4747e45195bc4c98bea4628476204", "shasum": "" }, "require": { @@ -8789,7 +8877,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v7.2.1" + "source": "https://github.com/symfony/mime/tree/v7.2.3" }, "funding": [ { @@ -8805,7 +8893,7 @@ "type": "tidelift" } ], - "time": "2024-12-07T08:50:44+00:00" + "time": "2025-01-27T11:08:17+00:00" }, { "name": "symfony/polyfill-ctype", @@ -9506,16 +9594,16 @@ }, { "name": "symfony/routing", - "version": "v7.2.0", + "version": "v7.2.3", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "e10a2450fa957af6c448b9b93c9010a4e4c0725e" + "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/e10a2450fa957af6c448b9b93c9010a4e4c0725e", - "reference": "e10a2450fa957af6c448b9b93c9010a4e4c0725e", + "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996", + "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996", "shasum": "" }, "require": { @@ -9567,7 +9655,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v7.2.0" + "source": "https://github.com/symfony/routing/tree/v7.2.3" }, "funding": [ { @@ -9583,7 +9671,7 @@ "type": "tidelift" } ], - "time": "2024-11-25T11:08:51+00:00" + "time": "2025-01-17T10:56:55+00:00" }, { "name": "symfony/service-contracts", @@ -10004,16 +10092,16 @@ }, { "name": "symfony/var-dumper", - "version": "v7.2.0", + "version": "v7.2.3", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "c6a22929407dec8765d6e2b6ff85b800b245879c" + "reference": "82b478c69745d8878eb60f9a049a4d584996f73a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c6a22929407dec8765d6e2b6ff85b800b245879c", - "reference": "c6a22929407dec8765d6e2b6ff85b800b245879c", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a", + "reference": "82b478c69745d8878eb60f9a049a4d584996f73a", "shasum": "" }, "require": { @@ -10067,7 +10155,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v7.2.0" + "source": "https://github.com/symfony/var-dumper/tree/v7.2.3" }, "funding": [ { @@ -10083,7 +10171,7 @@ "type": "tidelift" } ], - "time": "2024-11-08T15:48:14+00:00" + "time": "2025-01-17T11:39:41+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -10424,20 +10512,20 @@ "packages-dev": [ { "name": "backpack/generators", - "version": "v4.0.7", + "version": "dev-next", "source": { "type": "git", "url": "https://github.com/Laravel-Backpack/Generators.git", - "reference": "cd193adfe75573ff59033e473bbb2e2574a05f61" + "reference": "75b2ac80a823d08197dbb4a7c1ab18d2be6c26de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Backpack/Generators/zipball/cd193adfe75573ff59033e473bbb2e2574a05f61", - "reference": "cd193adfe75573ff59033e473bbb2e2574a05f61", + "url": "https://api.github.com/repos/Laravel-Backpack/Generators/zipball/75b2ac80a823d08197dbb4a7c1ab18d2be6c26de", + "reference": "75b2ac80a823d08197dbb4a7c1ab18d2be6c26de", "shasum": "" }, "require": { - "backpack/crud": "^6.0" + "backpack/crud": "7.0.0-alpha.1" }, "type": "library", "extra": { @@ -10484,9 +10572,9 @@ ], "support": { "issues": "https://github.com/Laravel-Backpack/Generators/issues", - "source": "https://github.com/Laravel-Backpack/Generators/tree/v4.0.7" + "source": "https://github.com/Laravel-Backpack/Generators/tree/next" }, - "time": "2024-10-15T10:41:40+00:00" + "time": "2025-01-27T15:53:36+00:00" }, { "name": "barryvdh/laravel-debugbar", @@ -11407,16 +11495,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.5.2", + "version": "11.5.7", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "153d0531b9f7e883c5053160cad6dd5ac28140b3" + "reference": "e1cb706f019e2547039ca2c839898cd5f557ee5d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/153d0531b9f7e883c5053160cad6dd5ac28140b3", - "reference": "153d0531b9f7e883c5053160cad6dd5ac28140b3", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e1cb706f019e2547039ca2c839898cd5f557ee5d", + "reference": "e1cb706f019e2547039ca2c839898cd5f557ee5d", "shasum": "" }, "require": { @@ -11437,7 +11525,7 @@ "phpunit/php-timer": "^7.0.1", "sebastian/cli-parser": "^3.0.2", "sebastian/code-unit": "^3.0.2", - "sebastian/comparator": "^6.2.1", + "sebastian/comparator": "^6.3.0", "sebastian/diff": "^6.0.2", "sebastian/environment": "^7.2.0", "sebastian/exporter": "^6.3.0", @@ -11488,7 +11576,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.2" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.7" }, "funding": [ { @@ -11504,7 +11592,7 @@ "type": "tidelift" } ], - "time": "2024-12-21T05:51:08+00:00" + "time": "2025-02-06T16:10:05+00:00" }, { "name": "sebastian/cli-parser", @@ -11678,16 +11766,16 @@ }, { "name": "sebastian/comparator", - "version": "6.2.1", + "version": "6.3.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739" + "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739", - "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/d4e47a769525c4dd38cea90e5dcd435ddbbc7115", + "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115", "shasum": "" }, "require": { @@ -11700,6 +11788,9 @@ "require-dev": { "phpunit/phpunit": "^11.4" }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" + }, "type": "library", "extra": { "branch-alias": { @@ -11743,7 +11834,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "security": "https://github.com/sebastianbergmann/comparator/security/policy", - "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1" + "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.0" }, "funding": [ { @@ -11751,7 +11842,7 @@ "type": "github" } ], - "time": "2024-10-31T05:30:08+00:00" + "time": "2025-01-06T10:28:19+00:00" }, { "name": "sebastian/complexity", @@ -12483,16 +12574,16 @@ }, { "name": "symfony/dom-crawler", - "version": "v7.2.0", + "version": "v7.2.3", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "b176e1f1f550ef44c94eb971bf92488de08f7c6b" + "reference": "700a880e5089280c7cf3ca1ccf9d9de6630f5d25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b176e1f1f550ef44c94eb971bf92488de08f7c6b", - "reference": "b176e1f1f550ef44c94eb971bf92488de08f7c6b", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/700a880e5089280c7cf3ca1ccf9d9de6630f5d25", + "reference": "700a880e5089280c7cf3ca1ccf9d9de6630f5d25", "shasum": "" }, "require": { @@ -12530,7 +12621,7 @@ "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v7.2.0" + "source": "https://github.com/symfony/dom-crawler/tree/v7.2.3" }, "funding": [ { @@ -12546,7 +12637,7 @@ "type": "tidelift" } ], - "time": "2024-11-13T16:15:23+00:00" + "time": "2025-01-27T11:08:17+00:00" }, { "name": "theseer/tokenizer", @@ -12599,9 +12690,165 @@ "time": "2024-03-03T12:36:25+00:00" } ], - "aliases": [], + "aliases": [ + { + "package": "backpack/activity-log", + "version": "dev-next", + "alias": "1.0.0", + "alias_normalized": "1.0.0.0" + }, + { + "package": "backpack/backupmanager", + "version": "dev-next", + "alias": "6.0", + "alias_normalized": "6.0.0.0" + }, + { + "package": "backpack/calendar-operation", + "version": "dev-next", + "alias": "1.0.0", + "alias_normalized": "1.0.0.0" + }, + { + "package": "backpack/ckeditor-field", + "version": "dev-next", + "alias": "1.0.0", + "alias_normalized": "1.0.0.0" + }, + { + "package": "backpack/editable-columns", + "version": "dev-next", + "alias": "1.0.0", + "alias_normalized": "1.0.0.0" + }, + { + "package": "backpack/filemanager", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/generators", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/language-switcher", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/logmanager", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/medialibrary-uploaders", + "version": "dev-next", + "alias": "1.99.99", + "alias_normalized": "1.99.99.0" + }, + { + "package": "backpack/menucrud", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/newscrud", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/pagemanager", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/pan-panel", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/permissionmanager", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/revise-operation", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/settings", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/theme-coreuiv2", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/theme-coreuiv4", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/theme-tabler", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + }, + { + "package": "backpack/tinymce-field", + "version": "dev-next", + "alias": "1.0.0", + "alias_normalized": "1.0.0.0" + }, + { + "package": "backpack/translation-manager", + "version": "dev-next", + "alias": "3.99.99", + "alias_normalized": "3.99.99.0" + } + ], "minimum-stability": "dev", - "stability-flags": {}, + "stability-flags": { + "backpack/activity-log": 20, + "backpack/backupmanager": 20, + "backpack/calendar-operation": 20, + "backpack/ckeditor-field": 20, + "backpack/editable-columns": 20, + "backpack/filemanager": 20, + "backpack/generators": 20, + "backpack/language-switcher": 20, + "backpack/logmanager": 20, + "backpack/medialibrary-uploaders": 20, + "backpack/menucrud": 20, + "backpack/newscrud": 20, + "backpack/pagemanager": 20, + "backpack/pan-panel": 20, + "backpack/permissionmanager": 20, + "backpack/revise-operation": 20, + "backpack/settings": 20, + "backpack/theme-coreuiv2": 20, + "backpack/theme-coreuiv4": 20, + "backpack/theme-tabler": 20, + "backpack/tinymce-field": 20, + "backpack/translation-manager": 20 + }, "prefer-stable": true, "prefer-lowest": false, "platform": { diff --git a/config/backup.php b/config/backup.php index 108c64c4..ecfa24ff 100644 --- a/config/backup.php +++ b/config/backup.php @@ -122,6 +122,31 @@ 'database_dump_file_extension' => '', 'destination' => [ + /* + * The compression algorithm to be used for creating the zip archive. + * + * If backing up only database, you may choose gzip compression for db dump and no compression at zip. + * + * Some common algorithms are listed below: + * ZipArchive::CM_STORE (no compression at all; set 0 as compression level) + * ZipArchive::CM_DEFAULT + * ZipArchive::CM_DEFLATE + * ZipArchive::CM_BZIP2 + * ZipArchive::CM_XZ + * + * For more check https://www.php.net/manual/zip.constants.php and confirm it's supported by your system. + */ + 'compression_method' => ZipArchive::CM_DEFAULT, + + /* + * The compression level corresponding to the used algorithm; an integer between 0 and 9. + * + * Check supported levels for the chosen algorithm, usually 1 means the fastest and weakest compression, + * while 9 the slowest and strongest one. + * + * Setting of 0 for some algorithms may switch to the strongest compression. + */ + 'compression_level' => 9, /* * The filename prefix used for the backup zip file. @@ -167,19 +192,19 @@ 'notifications' => [ 'notifications' => [ - \Spatie\Backup\Notifications\Notifications\BackupHasFailedNotification::class => [], - \Spatie\Backup\Notifications\Notifications\UnhealthyBackupWasFoundNotification::class => [], - \Spatie\Backup\Notifications\Notifications\CleanupHasFailedNotification::class => [], - \Spatie\Backup\Notifications\Notifications\BackupWasSuccessfulNotification::class => [], - \Spatie\Backup\Notifications\Notifications\HealthyBackupWasFoundNotification::class => [], - \Spatie\Backup\Notifications\Notifications\CleanupWasSuccessfulNotification::class => [], + Spatie\Backup\Notifications\Notifications\BackupHasFailedNotification::class => [], + Spatie\Backup\Notifications\Notifications\UnhealthyBackupWasFoundNotification::class => [], + Spatie\Backup\Notifications\Notifications\CleanupHasFailedNotification::class => [], + Spatie\Backup\Notifications\Notifications\BackupWasSuccessfulNotification::class => [], + Spatie\Backup\Notifications\Notifications\HealthyBackupWasFoundNotification::class => [], + Spatie\Backup\Notifications\Notifications\CleanupWasSuccessfulNotification::class => [], ], /* * Here you can specify the notifiable to which the notifications should be sent. The default * notifiable will use the variables specified in this config file. */ - 'notifiable' => \Spatie\Backup\Notifications\Notifiable::class, + 'notifiable' => Spatie\Backup\Notifications\Notifiable::class, 'mail' => [ 'to' => 'your@example.com', @@ -207,9 +232,9 @@ 'discord' => [ 'webhook_url' => '', - 'username' => null, + 'username' => '', - 'avatar_url' => null, + 'avatar_url' => '', ], ], @@ -223,8 +248,8 @@ 'name' => env('APP_NAME', 'laravel-backup'), 'disks' => ['local'], 'health_checks' => [ - \Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumAgeInDays::class => 1, - \Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumStorageInMegabytes::class => 5000, + Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumAgeInDays::class => 1, + Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumStorageInMegabytes::class => 5000, ], ], @@ -250,7 +275,7 @@ * No matter how you configure it the default strategy will never * delete the newest backup. */ - 'strategy' => \Spatie\Backup\Tasks\Cleanup\Strategies\DefaultStrategy::class, + 'strategy' => Spatie\Backup\Tasks\Cleanup\Strategies\DefaultStrategy::class, 'default_strategy' => [ diff --git a/resources/views/vendor/elfinder/ckeditor4.blade.php b/resources/views/vendor/elfinder/ckeditor4.blade.php deleted file mode 100644 index 0e47561d..00000000 --- a/resources/views/vendor/elfinder/ckeditor4.blade.php +++ /dev/null @@ -1,67 +0,0 @@ - - - - - @include('vendor.elfinder.common_scripts') - @include('vendor.elfinder.common_styles') - - - - - - - -
- - - diff --git a/resources/views/vendor/elfinder/ckeditor4.php b/resources/views/vendor/elfinder/ckeditor4.php deleted file mode 100644 index 5191c12b..00000000 --- a/resources/views/vendor/elfinder/ckeditor4.php +++ /dev/null @@ -1,83 +0,0 @@ - - - - - elFinder 2.0 - - - - - - - - - - - - - - - - - - - - - - - - -
- - - diff --git a/resources/views/vendor/elfinder/common_scripts.blade.php b/resources/views/vendor/elfinder/common_scripts.blade.php deleted file mode 100644 index c2daffa1..00000000 --- a/resources/views/vendor/elfinder/common_scripts.blade.php +++ /dev/null @@ -1,21 +0,0 @@ - {{-- jQuery (REQUIRED) --}} - @if (!isset ($jquery) || (isset($jquery) && $jquery == true)) - @basset('https://unpkg.com/jquery@3.6.4/dist/jquery.min.js') - @endif - - {{-- jQuery UI and Smoothness theme --}} - @bassetArchive('https://github.com/jquery/jquery-ui/archive/refs/tags/1.13.2.tar.gz', 'jquery-ui-1.13.2') - @basset('jquery-ui-1.13.2/jquery-ui-1.13.2/dist/themes/smoothness/jquery-ui.min.css') - @basset('jquery-ui-1.13.2/jquery-ui-1.13.2/dist/jquery-ui.min.js') - - {{-- elFinder JS (REQUIRED) --}} - @bassetArchive('https://github.com/Studio-42/elFinder/archive/refs/tags/2.1.64.tar.gz', 'elfinder-2.1.64') - @basset('elfinder-2.1.64/elFinder-2.1.64/js/elfinder.min.js') - - {{-- elFinder translation (OPTIONAL) --}} - @if($locale) - @basset('https://cdnjs.cloudflare.com/ajax/libs/elfinder/2.1.64/js/i18n/elfinder.'.$locale.'.min.js') - @endif - - {{-- elFinder sounds --}} - @basset(base_path('vendor/studio-42/elfinder/sounds/rm.wav')) diff --git a/resources/views/vendor/elfinder/common_styles.blade.php b/resources/views/vendor/elfinder/common_styles.blade.php deleted file mode 100644 index cabe921c..00000000 --- a/resources/views/vendor/elfinder/common_styles.blade.php +++ /dev/null @@ -1,89 +0,0 @@ - -File Manager -{{-- elFinder CSS (REQUIRED) --}} -@php - $themeStylesheetVersion = '3.0.0'; -@endphp -@bassetArchive('https://github.com/Studio-42/elFinder/archive/refs/tags/2.1.64.tar.gz', 'elfinder-2.1.64') -@basset('elfinder-2.1.64/elFinder-2.1.64/css/elfinder.min.css') -@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@'.$themeStylesheetVersion.'/Material/css/theme.min.css') -@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@'.$themeStylesheetVersion.'/Material/images/loading.svg', false) -@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@'.$themeStylesheetVersion.'/Material/font/material.eot', false) -@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@'.$themeStylesheetVersion.'/Material/font/material.svg', false) -@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@'.$themeStylesheetVersion.'/Material/images/icons-big.svg', false) -@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@'.$themeStylesheetVersion.'/Material/images/icons-small.svg', false) -@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@'.$themeStylesheetVersion.'/Material/font/material.woff', false) -@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@'.$themeStylesheetVersion.'/Material/font/material.ttf', false) -@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@'.$themeStylesheetVersion.'/Material/font/material.woff2', false) - -@bassetBlock('elfinderThemeSwitcherScript.js') - -@endBassetBlock diff --git a/resources/views/vendor/elfinder/elfinder.blade.php b/resources/views/vendor/elfinder/elfinder.blade.php deleted file mode 100644 index 7308e488..00000000 --- a/resources/views/vendor/elfinder/elfinder.blade.php +++ /dev/null @@ -1,47 +0,0 @@ -@extends(backpack_view('blank')) - -@section('after_scripts') - - @include('vendor.elfinder.common_scripts') - @include('vendor.elfinder.common_styles') - - - -@endsection - -@php - $breadcrumbs = [ - trans('backpack::crud.admin') => url(config('backpack.base.route_prefix'), 'dashboard'), - trans('backpack::crud.file_manager') => false, - ]; -@endphp - -@section('header') -
-

{{ trans('backpack::crud.file_manager') }}

-
-@endsection - -@section('content') - - -
- -@endsection diff --git a/resources/views/vendor/elfinder/elfinder.php b/resources/views/vendor/elfinder/elfinder.php deleted file mode 100644 index bb1b1f6c..00000000 --- a/resources/views/vendor/elfinder/elfinder.php +++ /dev/null @@ -1,72 +0,0 @@ - - - - - elFinder 2.0 - - - - - - - - - - - - - - - - - - - - - - - - -
- - - diff --git a/resources/views/vendor/elfinder/filepicker.blade.php b/resources/views/vendor/elfinder/filepicker.blade.php deleted file mode 100644 index d8a1698b..00000000 --- a/resources/views/vendor/elfinder/filepicker.blade.php +++ /dev/null @@ -1,88 +0,0 @@ - - - - - @include('vendor.elfinder.common_scripts') - @include('vendor.elfinder.common_styles') - - - - - - -
- - - diff --git a/resources/views/vendor/elfinder/filepicker.php b/resources/views/vendor/elfinder/filepicker.php deleted file mode 100644 index bf0dda02..00000000 --- a/resources/views/vendor/elfinder/filepicker.php +++ /dev/null @@ -1,106 +0,0 @@ - - - - - elFinder 2.0 - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - diff --git a/resources/views/vendor/elfinder/standalonepopup.blade.php b/resources/views/vendor/elfinder/standalonepopup.blade.php deleted file mode 100644 index 37f3af44..00000000 --- a/resources/views/vendor/elfinder/standalonepopup.blade.php +++ /dev/null @@ -1,63 +0,0 @@ - - - - - @include('vendor.elfinder.common_scripts') - @include('vendor.elfinder.common_styles', ['styleBodyElement' => true]) - - - - - - - -
- - diff --git a/resources/views/vendor/elfinder/standalonepopup.php b/resources/views/vendor/elfinder/standalonepopup.php deleted file mode 100644 index 7e8f4e84..00000000 --- a/resources/views/vendor/elfinder/standalonepopup.php +++ /dev/null @@ -1,82 +0,0 @@ - - - - - elFinder 2.0 - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - diff --git a/resources/views/vendor/elfinder/tinymce.blade.php b/resources/views/vendor/elfinder/tinymce.blade.php deleted file mode 100644 index ee700612..00000000 --- a/resources/views/vendor/elfinder/tinymce.blade.php +++ /dev/null @@ -1,89 +0,0 @@ - - - - - @include('vendor.elfinder.common_scripts') - @include('vendor.elfinder.common_styles') - - - - - - - - - - -
- - - diff --git a/resources/views/vendor/elfinder/tinymce.php b/resources/views/vendor/elfinder/tinymce.php deleted file mode 100644 index ccf17f4d..00000000 --- a/resources/views/vendor/elfinder/tinymce.php +++ /dev/null @@ -1,105 +0,0 @@ - - - - - elFinder 2.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - diff --git a/resources/views/vendor/elfinder/tinymce4.blade.php b/resources/views/vendor/elfinder/tinymce4.blade.php deleted file mode 100644 index 107a59b7..00000000 --- a/resources/views/vendor/elfinder/tinymce4.blade.php +++ /dev/null @@ -1,71 +0,0 @@ - - - - - @include('vendor.elfinder.common_scripts') - @include('vendor.elfinder.common_styles') - - - - - - - -
- - - diff --git a/resources/views/vendor/elfinder/tinymce4.php b/resources/views/vendor/elfinder/tinymce4.php deleted file mode 100644 index 5083463c..00000000 --- a/resources/views/vendor/elfinder/tinymce4.php +++ /dev/null @@ -1,86 +0,0 @@ - - - - - elFinder 2.0 - - - - - - - - - - - - - - - - - - - - - - - - -
- - - diff --git a/resources/views/vendor/elfinder/tinymce5.blade.php b/resources/views/vendor/elfinder/tinymce5.blade.php deleted file mode 100644 index 5a7cd301..00000000 --- a/resources/views/vendor/elfinder/tinymce5.blade.php +++ /dev/null @@ -1,55 +0,0 @@ - - - - - @include('vendor.elfinder.common_scripts') - @include('vendor.elfinder.common_styles', ['styleBodyElement' => true]) - - - - - - - -
- - - diff --git a/resources/views/vendor/elfinder/tinymce5.php b/resources/views/vendor/elfinder/tinymce5.php deleted file mode 100644 index 6404f862..00000000 --- a/resources/views/vendor/elfinder/tinymce5.php +++ /dev/null @@ -1,87 +0,0 @@ - - - - - elFinder 2.0 - - - - - - - - - - - - - - - - - - - - - - - - -
- - -