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/AdminPageController.php b/app/Http/Controllers/Admin/AdminPageController.php
new file mode 100644
index 00000000..41460336
--- /dev/null
+++ b/app/Http/Controllers/Admin/AdminPageController.php
@@ -0,0 +1,19 @@
+ 'New in v7',
+ 'description' => 'Discover the new features and improvements in Backpack v7.',
+ ]);
+ }
+}
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/IconCrudController.php b/app/Http/Controllers/Admin/IconCrudController.php
index b57e94f9..c9b5da12 100644
--- a/app/Http/Controllers/Admin/IconCrudController.php
+++ b/app/Http/Controllers/Admin/IconCrudController.php
@@ -25,6 +25,20 @@ public function setup()
protected function setupListOperation()
{
$this->crud->addColumns(['name', 'icon']);
+
+ $this->crud->addFilter([
+ 'type' => 'date_range',
+ 'name' => 'created_at',
+ 'label' => 'Created At',
+ ], null, function ($value) {
+ $value = json_decode($value, true);
+
+ // if the filter is active
+ if ($value) {
+ $this->crud->addClause('where', 'created_at', '>=', $value['from']);
+ $this->crud->addClause('where', 'created_at', '<=', $value['to']);
+ }
+ });
}
protected function setupCreateOperation()
diff --git a/app/Http/Controllers/Admin/MonsterCrudController.php b/app/Http/Controllers/Admin/MonsterCrudController.php
index 8d155d71..c4610358 100644
--- a/app/Http/Controllers/Admin/MonsterCrudController.php
+++ b/app/Http/Controllers/Admin/MonsterCrudController.php
@@ -5,6 +5,7 @@
use App\Http\Requests\MonsterRequest as StoreRequest;
// VALIDATION: change the requests to match your own file names if you need form validation
use Backpack\CRUD\app\Http\Controllers\CrudController;
+use Backpack\CRUD\app\Library\Widget;
use Illuminate\Support\Collection;
class MonsterCrudController extends CrudController
@@ -15,8 +16,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;
@@ -64,7 +65,7 @@ public function fetchPaginatedTypes()
['id' => 'review', 'title' => 'Review', 'location' => 'Hybrid'],
];
- Collection::macro('paginate', function (int $perPage = 15, int $page = null, array $options = []) {
+ Collection::macro('paginate', function (int $perPage = 15, ?int $page = null, array $options = []) {
$page ??= \Illuminate\Pagination\Paginator::resolveCurrentPage() ?? 1;
return new \Illuminate\Pagination\LengthAwarePaginator($this->forPage($page, $perPage)->toArray(), $this->count(), $perPage, $page, $options);
@@ -279,6 +280,53 @@ public function setupListOperation()
public function setupShowOperation()
{
+ // add a widget
+ Widget::add([
+ 'type' => 'datatable',
+ 'controller' => 'App\Http\Controllers\Admin\IconCrudController',
+ 'name' => 'icon_crud',
+ 'section' => 'after_content',
+ 'content' => [
+ 'header' => 'Icons for this monster',
+ ],
+ 'wrapper' => ['class'=> 'mb-3'],
+ ]);
+
+ Widget::add([
+ 'type' => 'datatable',
+ 'controller' => 'App\Http\Controllers\Admin\ProductCrudController',
+ 'name' => 'products_datatable',
+ 'section' => 'after_content',
+ 'content' => [
+ 'header' => 'Products for this monster',
+ ],
+ 'wrapper' => ['class'=> 'mb-3'],
+ 'configure' => function ($crud, $entry = null) {
+ // Customize which columns to show
+ $crud->removeAllColumns();
+ $crud->addColumn(['name' => 'name', 'label' => 'Product Name']);
+ $crud->addColumn(['name' => 'price', 'label' => 'Price']);
+
+ // Get the current monster's products
+ if ($entry) {
+ $productIds = $entry->products->pluck('id')->toArray();
+ if (count($productIds) > 0) {
+ // Configure the controller to only show products related to this monster
+ $crud->addClause('whereIn', 'id', $productIds);
+ } else {
+ // Force an empty result when there are no products
+ $crud->addClause('where', 'id', 0); // This will match no products
+ }
+
+ // Remove buttons that aren't needed for this embedded view
+
+ // Disable features that aren't needed
+ $crud->denyAccess(['create', 'update', 'delete']);
+ $crud->disableResponsiveTable();
+ }
+ },
+ ]);
+
$this->crud->setOperationSetting('tabsEnabled', true);
$this->setupListOperation();
@@ -320,13 +368,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 +1744,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 +1762,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 +1873,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/PetShop/InvoiceCrudController.php b/app/Http/Controllers/Admin/PetShop/InvoiceCrudController.php
index 945d3219..1390a27f 100644
--- a/app/Http/Controllers/Admin/PetShop/InvoiceCrudController.php
+++ b/app/Http/Controllers/Admin/PetShop/InvoiceCrudController.php
@@ -5,6 +5,7 @@
use App\Http\Requests\InvoiceRequest;
use Backpack\CRUD\app\Http\Controllers\CrudController;
use Backpack\CRUD\app\Library\CrudPanel\CrudPanelFacade as CRUD;
+use Backpack\CRUD\app\Library\Widget;
/**
* Class InvoiceCrudController.
@@ -53,19 +54,32 @@ public function setupLast5YearsView()
protected function setupListOperation()
{
CRUD::addColumn([
- 'name' => 'owner',
- 'label' => 'Owner',
- 'linkTo' => [
- 'route' => 'owner.show',
- 'target' => '_blank',
- ],
+ 'name' => 'info',
+ 'type' => 'view',
+ 'view' => 'crud::chips.invoice',
]);
- CRUD::column('series');
- CRUD::column('number');
CRUD::column('issuance_date');
CRUD::column('due_date');
CRUD::column('total');
+ CRUD::filter('series')
+ ->type('dropdown')
+ ->values(\App\Models\PetShop\Invoice::select('series')->distinct()->pluck('series', 'series')->toArray())
+ ->label('Series')
+ ->placeholder('Search by series')
+ ->whenActive(function ($value) {
+ CRUD::addClause('where', 'series', '=', $value);
+ });
+
+ CRUD::filter('issuance_date')
+ ->type('date_range')
+ ->label('Issuance Date')
+ ->placeholder('Search by issuance date')
+ ->whenActive(function ($value) {
+ $dates = json_decode($value);
+ CRUD::addClause('whereBetween', 'issuance_date', [$dates->from, $dates->to]);
+ });
+
$this->runCustomViews();
}
@@ -130,6 +144,17 @@ protected function setupShowOperation()
$this->autoSetupShowOperation();
CRUD::column('total');
+
+ // get the owner with important relationships
+ $owner = CRUD::getCurrentEntry()->owner()->with('avatar', 'invoices')->first();
+
+ // add a chip widget for the owner
+ Widget::add()
+ ->to('after_content')
+ ->type('chip')
+ ->view('crud::chips.owner')
+ ->title('Owner')
+ ->entry($owner);
}
public function fetchOwner()
diff --git a/app/Http/Controllers/Admin/PetShop/OwnerCrudController.php b/app/Http/Controllers/Admin/PetShop/OwnerCrudController.php
index dca5e7bf..a6560468 100644
--- a/app/Http/Controllers/Admin/PetShop/OwnerCrudController.php
+++ b/app/Http/Controllers/Admin/PetShop/OwnerCrudController.php
@@ -5,6 +5,7 @@
use App\Http\Requests\OwnerRequest;
use Backpack\CRUD\app\Http\Controllers\CrudController;
use Backpack\CRUD\app\Library\CrudPanel\CrudPanelFacade as CRUD;
+use Backpack\CRUD\app\Library\Widget;
/**
* Class OwnerCrudController.
@@ -47,8 +48,8 @@ public function setup()
*/
protected function setupListOperation()
{
- CRUD::column('name');
- CRUD::column('avatar.url')->type('image')->label('Avatar');
+ CRUD::column('name')->size(6);
+ CRUD::column('avatar.url')->type('image')->label('Avatar')->size(6);
CRUD::column('pets')->label('Pets')->linkTo('pet.show');
CRUD::column('invoices')->linkTo('invoice.show');
CRUD::column('badges')->label('Badges')->linkTo('badge.show');
@@ -99,4 +100,47 @@ protected function setupUpdateOperation()
{
$this->setupCreateOperation();
}
+
+ protected function setupShowOperation()
+ {
+ $this->setupListOperation();
+
+ Widget::add([
+ 'type' => 'datatable',
+ 'controller' => 'App\Http\Controllers\Admin\PetShop\PetCrudController',
+ 'name' => 'pets_crud',
+ 'section' => 'after_content',
+ 'wrapper' => ['class' => 'mt-3'],
+ 'content' => [
+ 'header' => 'Pets for this owner',
+ // COULD-DO: maybe add support for a subheader?
+ // 'subheader' => 'This is a list of all pets owned by this owner.',
+ ],
+ 'setup' => function ($crud, $parent) {
+ // change some column attributes just inside this instance
+ $crud->column('skills')->label('Pet skills');
+ $crud->column('passport.number')->label('Passport Number');
+
+ // only show the pets of this owner (owner is an n-n relationship)
+ $crud->addClause('whereHas', 'owners', function ($query) use ($parent) {
+ $query->where('id', $parent->id);
+ });
+ },
+ ]);
+ Widget::add([
+ 'type' => 'datatable',
+ 'controller' => 'App\Http\Controllers\Admin\PetShop\InvoiceCrudController',
+ 'name' => 'invoices_crud',
+ 'section' => 'after_content',
+ 'wrapper' => ['class' => 'mt-3'],
+ 'content' => [
+ 'header' => 'Invoices for this owner',
+ ],
+ // MUST-DO: How the fuck do I make this only show related pets?!?!
+ 'setup' => function ($crud, $parent) {
+ // only show the pets of this owner (owner is an n-n relationship)
+ $crud->addClause('where', 'owner_id', $parent->id);
+ },
+ ]);
+ }
}
diff --git a/app/Http/Controllers/Admin/PetShop/PetCrudController.php b/app/Http/Controllers/Admin/PetShop/PetCrudController.php
index af61e008..c6b2db69 100644
--- a/app/Http/Controllers/Admin/PetShop/PetCrudController.php
+++ b/app/Http/Controllers/Admin/PetShop/PetCrudController.php
@@ -54,6 +54,19 @@ protected function setupListOperation()
CRUD::column('avatar.url')->type('image')->label('Avatar');
CRUD::addButtonFromView('top', 'passports', 'passports');
+
+ CRUD::filter('skills')
+ ->type('select2_multiple')
+ ->values(function () {
+ return \App\Models\Petshop\Skill::all()->keyBy('id')->pluck('name', 'id')->toArray();
+ })
+ ->whenActive(function ($values) {
+ $values = json_decode($values, true);
+
+ $this->crud->addClause('whereHas', 'skills', function ($query) use ($values) {
+ $query->whereIn('id', $values);
+ });
+ });
}
/**
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/app/Http/Middleware/Theme.php b/app/Http/Middleware/Theme.php
index 2fe54a8e..4aa5531e 100644
--- a/app/Http/Middleware/Theme.php
+++ b/app/Http/Middleware/Theme.php
@@ -18,6 +18,12 @@ public function handle($request, Closure $next): mixed
// Set layout if exist in session — only for Tabler
if (Session::get('backpack.ui.view_namespace') === 'backpack.theme-tabler::') {
Config::set('backpack.theme-tabler.layout', Session::get('backpack.theme-tabler.layout') ?? config('backpack.theme-tabler.layout'));
+
+ // Set styles if exist in session — only for Tabler
+ $sessionStyles = Session::get('backpack.theme-tabler.styles');
+ if ($sessionStyles !== null && !empty($sessionStyles)) {
+ Config::set('backpack.theme-tabler.styles', $sessionStyles);
+ }
}
return $next($request);
diff --git a/composer.json b/composer.json
index 90db349b..1fa09bf2 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",
+ "laravel/framework": "^12.0",
+ "backpack/crud": "^7.0.0-alpha",
+ "backpack/pro": "^3.0.0-alpha",
+ "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..c9a2879a 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": "3da274f1b42be43a5fd9ea46f303ef50",
"packages": [
{
"name": "aws/aws-crt-php",
@@ -62,16 +62,16 @@
},
{
"name": "aws/aws-sdk-php",
- "version": "3.336.7",
+ "version": "3.348.1",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
- "reference": "3ebc383239f93d6f1e74573112c9d179070d2620"
+ "reference": "c384263bebbfcdd0f59b459e630851f59080955f"
},
"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/c384263bebbfcdd0f59b459e630851f59080955f",
+ "reference": "c384263bebbfcdd0f59b459e630851f59080955f",
"shasum": ""
},
"require": {
@@ -79,31 +79,30 @@
"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,33 +151,33 @@
"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.348.1"
},
- "time": "2025-01-02T19:07:47+00:00"
+ "time": "2025-06-27T19:02:10+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": "9a0bd5039039409027795c0f52aa89f30f6971cb"
},
"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/9a0bd5039039409027795c0f52aa89f30f6971cb",
+ "reference": "9a0bd5039039409027795c0f52aa89f30f6971cb",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0",
+ "backpack/crud": "^7.0.0-alpha",
"spatie/laravel-activitylog": "^4.7"
},
"require-dev": {
- "orchestra/testbench": "~5|~6",
- "phpunit/phpunit": "~9.0"
+ "orchestra/testbench": "^5|^6|^7|^8|^9|^10|^11",
+ "phpunit/phpunit": "^9.0|^10.0|^11.0"
},
"type": "library",
"extra": {
@@ -220,27 +219,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-03-06T10:06:52+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": "2b596dfa9e8bb4bf522de9656ff63fd3ad6d9d6d"
},
"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/2b596dfa9e8bb4bf522de9656ff63fd3ad6d9d6d",
+ "reference": "2b596dfa9e8bb4bf522de9656ff63fd3ad6d9d6d",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0",
- "spatie/laravel-backup": "^8.0"
+ "backpack/crud": "^7.0.0-alpha",
+ "spatie/laravel-backup": "^8.0|^9.0"
},
"require-dev": {
"scrutinizer/ocular": "~1.7|~1.1"
@@ -276,42 +275,41 @@
"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-03-05T16:09:06+00:00"
},
{
"name": "backpack/basset",
- "version": "1.3.6",
+ "version": "2.0.0-beta.1",
"source": {
"type": "git",
"url": "https://github.com/Laravel-Backpack/basset.git",
- "reference": "2c20d233d58c42b8c826688e9c613cab82bf62e1"
+ "reference": "7a6438b9f35b2d80b3044be8d227e0e281e5f5fb"
},
"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/7a6438b9f35b2d80b3044be8d227e0e281e5f5fb",
+ "reference": "7a6438b9f35b2d80b3044be8d227e0e281e5f5fb",
"shasum": ""
},
"require": {
"guzzlehttp/guzzle": "^7.5",
- "laravel/framework": "^10.15|^11"
+ "laravel/framework": "^10.15|^11|^12.0"
},
"require-dev": {
- "nunomaduro/collision": "^6.0|^7.2",
- "orchestra/testbench": "^7.22|^8.5",
- "pestphp/pest": "^1.22|^2.5",
- "pestphp/pest-plugin-laravel": "^1.4|^2.0",
- "phpstan/phpstan": "^1.10",
- "phpunit/phpunit": "~9.0|~10.0"
+ "nunomaduro/collision": "^6.0|^7.2|^8.0",
+ "orchestra/testbench": "^7.22|^8.5|^9.0|^10.0",
+ "pestphp/pest": "^1.22|^2.5|^3.7",
+ "pestphp/pest-plugin-laravel": "^1.4|^2.0|^3.1",
+ "phpstan/phpstan": "^1.10|^2.1",
+ "phpunit/phpunit": "~9.0|~10.0|^11.5.3"
},
"suggest": {
"ext-zip": "Required to use @bassetArchive with .zip archives."
@@ -357,31 +355,31 @@
],
"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-beta.1"
},
- "time": "2024-08-28T10:12:55+00:00"
+ "time": "2025-06-27T15:18:44+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": "20c778f58a0884aee31e933346b856fd2ccba36e"
},
"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-20c778f58a0884aee31e933346b856fd2ccba36e-zip-d06a50.zip",
+ "reference": "20c778f58a0884aee31e933346b856fd2ccba36e",
+ "shasum": "257d3c117650139e721a7f0751e2d7be8b6fbbea"
},
"require": {
- "backpack/crud": "^6.5"
+ "backpack/crud": "^7.0.0-alpha"
},
"require-dev": {
"larastan/larastan": "^2.8",
- "orchestra/testbench": "^8.21",
- "phpunit/phpunit": "~10"
+ "orchestra/testbench": "^8.21|^9|^10",
+ "phpunit/phpunit": "^10|^11"
},
"type": "library",
"extra": {
@@ -434,36 +432,80 @@
"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-03-06T10:31:38+00:00"
+ },
+ {
+ "name": "backpack/ckeditor-field",
+ "version": "dev-next",
+ "source": {
+ "type": "git",
+ "url": "git@github.com:Laravel-Backpack/ckeditor-field.git",
+ "reference": "f15a648e02bd8c494387d872942a602276f98970"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Laravel-Backpack/ckeditor-field/zipball/f15a648e02bd8c494387d872942a602276f98970",
+ "reference": "f15a648e02bd8c494387d872942a602276f98970",
+ "shasum": ""
+ },
+ "require": {
+ "backpack/crud": "^7.0.0-alpha"
+ },
+ "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-03-06T10:01:09+00:00"
},
{
"name": "backpack/crud",
- "version": "6.7.45",
+ "version": "7.0.0-beta.2",
"source": {
"type": "git",
"url": "https://github.com/Laravel-Backpack/CRUD.git",
- "reference": "5a39ace937bfa5a2ce3740c4d42fa7e93de4cbf7"
+ "reference": "19d567ae4050a7a7a19a9a0ed86599eafc99a2cd"
},
"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/19d567ae4050a7a7a19a9a0ed86599eafc99a2cd",
+ "reference": "19d567ae4050a7a7a19a9a0ed86599eafc99a2cd",
"shasum": ""
},
"require": {
- "backpack/basset": "^1.1.1|^1.3.2",
- "creativeorange/gravatar": "~1.0",
- "doctrine/dbal": "^3.0|^4.0",
+ "backpack/basset": "^2.0.0-beta",
+ "creativeorange/gravatar": "^1.0",
+ "doctrine/dbal": "^4.0",
"guzzlehttp/guzzle": "^7.0",
- "laravel/framework": "^10.0|^11.0",
+ "laravel/framework": "^12",
"prologue/alerts": "^1.0"
},
"require-dev": {
- "orchestra/testbench": "^8.0|^9.0|^10.0",
- "phpunit/phpunit": "^10.0|^9.0|^11.0",
+ "orchestra/testbench": "^10.0",
+ "phpunit/phpunit": "^11.0",
"spatie/laravel-translatable": "^6.0"
},
"suggest": {
@@ -529,30 +571,30 @@
],
"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-beta.2"
},
- "time": "2024-12-20T16:51:25+00:00"
+ "time": "2025-06-28T13:32:34+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": "f723a5235487c4ca340900ffb143412fcbc8246b"
},
"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-f723a5235487c4ca340900ffb143412fcbc8246b-zip-0fabc6.zip",
+ "reference": "f723a5235487c4ca340900ffb143412fcbc8246b",
+ "shasum": "481946b2afd48d56e4367a68adb1253671f26f31"
},
"require": {
- "backpack/crud": "^6.0"
+ "backpack/crud": "^7.0.0-alpha"
},
"require-dev": {
- "orchestra/testbench": "~5|~6",
- "phpunit/phpunit": "~9.0"
+ "orchestra/testbench": "^5|^6|^7|^8|^9|^10",
+ "phpunit/phpunit": "^9.0|^10.0|^11.0"
},
"type": "library",
"extra": {
@@ -597,33 +639,33 @@
"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-06-25T15:14:28+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": "def497fbe3b6b7bbff6a8919968cffaf1611285c"
},
"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/def497fbe3b6b7bbff6a8919968cffaf1611285c",
+ "reference": "def497fbe3b6b7bbff6a8919968cffaf1611285c",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0",
+ "backpack/crud": "^7.0.0-alpha",
"barryvdh/laravel-elfinder": "^0.5.2"
},
"require-dev": {
"mockery/mockery": "^1.5",
- "orchestra/testbench": "^8",
- "phpunit/phpunit": "^10.0"
+ "orchestra/testbench": "^8|^9|^10|^11",
+ "phpunit/phpunit": "^10.0|^11.0"
},
"type": "library",
"extra": {
@@ -657,26 +699,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-03-06T09:57:18+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": "3ddf9626f03191125e41ff4019df29ac3e12d627"
},
"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/3ddf9626f03191125e41ff4019df29ac3e12d627",
+ "reference": "3ddf9626f03191125e41ff4019df29ac3e12d627",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0",
+ "backpack/crud": "^7.0.0-alpha",
"outhebox/blade-flags": "^1.2"
},
"require-dev": {
@@ -723,26 +765,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-03-11T10:01:33+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": "0bcfe9c1deaa654da5e76515746140b547691f2f"
},
"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/0bcfe9c1deaa654da5e76515746140b547691f2f",
+ "reference": "0bcfe9c1deaa654da5e76515746140b547691f2f",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0"
+ "backpack/crud": "^7.0.0-alpha"
},
"type": "library",
"extra": {
@@ -780,31 +822,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-03-06T09:51:49+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": "f9b02f20170a61107c4869813d40e6a6b2cf2aa5"
},
"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/f9b02f20170a61107c4869813d40e6a6b2cf2aa5",
+ "reference": "f9b02f20170a61107c4869813d40e6a6b2cf2aa5",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0",
- "spatie/laravel-medialibrary": "^10.7|^11.3"
+ "backpack/crud": "^7.0.0-alpha",
+ "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 +883,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-03-06T10:07:41+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": "55572b02bfce9e1553bae8985191ea1e0ef01813"
},
"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/55572b02bfce9e1553bae8985191ea1e0ef01813",
+ "reference": "55572b02bfce9e1553bae8985191ea1e0ef01813",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0",
- "backpack/pagemanager": "^3.2"
+ "backpack/crud": "^7.0.0-alpha",
+ "backpack/pagemanager": "dev-next as 3.0"
},
"require-dev": {
"scrutinizer/ocular": "~1.1",
@@ -903,31 +945,31 @@
],
"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-03-05T16:06:23+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": "e12c6503746cec393d0f2c1b663bd351afa6678b"
},
"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/e12c6503746cec393d0f2c1b663bd351afa6678b",
+ "reference": "e12c6503746cec393d0f2c1b663bd351afa6678b",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0",
- "backpack/pro": "^2.0",
- "cviebrock/eloquent-sluggable": "^10.0|^11.0"
+ "backpack/crud": "^7.0.0-alpha",
+ "backpack/pro": "^3.0.0-alpha",
+ "cviebrock/eloquent-sluggable": "^10.0|^11.0|^12.0"
},
"require-dev": {
- "phpunit/phpunit": "^10.0||^9.0||^7.0",
+ "phpunit/phpunit": "^11.0||^10.0||^9.0||^7.0",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3||~3.0"
},
@@ -967,32 +1009,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-03-05T16:05:55+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": "f03d67ada7f23864061e50c9c95a3ce4731cebfb"
},
"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/f03d67ada7f23864061e50c9c95a3ce4731cebfb",
+ "reference": "f03d67ada7f23864061e50c9c95a3ce4731cebfb",
"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",
+ "cviebrock/eloquent-sluggable": "^11.0|^12.0"
},
"require-dev": {
- "phpunit/phpunit": "^10.0||^9.0||^7.0",
+ "phpunit/phpunit": "^10.0|^11.0",
"scrutinizer/ocular": "~1.1",
- "squizlabs/php_codesniffer": "~2.3||~3.0"
+ "squizlabs/php_codesniffer": "~3.0"
},
"type": "library",
"extra": {
@@ -1039,26 +1081,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-03-05T16:06:47+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": "66246c479e00c0d915f66a413e0774d4180c5752"
},
"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/66246c479e00c0d915f66a413e0774d4180c5752",
+ "reference": "66246c479e00c0d915f66a413e0774d4180c5752",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0",
+ "backpack/crud": "^7.0.0-alpha",
"panphp/pan": "^0.1.7"
},
"type": "library",
@@ -1086,27 +1128,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-03-06T10:29:33+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": "59d7b53da44bd2e50229a19db21848c829f41ff1"
},
"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/59d7b53da44bd2e50229a19db21848c829f41ff1",
+ "reference": "59d7b53da44bd2e50229a19db21848c829f41ff1",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0",
- "spatie/laravel-permission": "^6.4||^5.0||^4.0||^3.0"
+ "backpack/crud": "^7.0.0-alpha",
+ "spatie/laravel-permission": "^6.4"
},
"type": "library",
"extra": {
@@ -1156,30 +1198,32 @@
],
"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-03-06T10:09:42+00:00"
},
{
"name": "backpack/pro",
- "version": "2.2.29",
+ "version": "3.0.0-alpha.4",
"source": {
"type": "git",
"url": "git@github.com:Laravel-Backpack/PRO.git",
- "reference": "d3a3969ceeaf8239eba5dac813409ff4f502ee4d"
+ "reference": "69d4308aec7ffee8ddfe0aa35849ae223a74f2e3"
},
"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-69d4308aec7ffee8ddfe0aa35849ae223a74f2e3-zip-16eb60.zip",
+ "reference": "69d4308aec7ffee8ddfe0aa35849ae223a74f2e3",
+ "shasum": "4b3831304c4983a4a791f6959993eef55abb941f"
},
"require": {
- "backpack/crud": "^6.0.1"
+ "backpack/crud": "^7.0.0-alpha"
},
"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",
+ "spatie/laravel-translatable": "^6.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.4",
"issues": "https://github.com/Laravel-Backpack/PRO/issues"
},
- "time": "2024-12-04T16:19:06+00:00"
+ "time": "2025-06-09T13:47:59+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": "bf8b0a4f8e5f5e7004a707b75ddae444a5856d33"
},
"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/bf8b0a4f8e5f5e7004a707b75ddae444a5856d33",
+ "reference": "bf8b0a4f8e5f5e7004a707b75ddae444a5856d33",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0",
+ "backpack/crud": "^7.0.0-alpha",
"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-03-06T10:29:02+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": "065a8a21d4991dd13f5465bff33848bdddd09e71"
},
"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/065a8a21d4991dd13f5465bff33848bdddd09e71",
+ "reference": "065a8a21d4991dd13f5465bff33848bdddd09e71",
"shasum": ""
},
"require": {
- "backpack/crud": "^4.0|^5.0|^6.0"
+ "backpack/crud": "^4.0|^5.0|^6.0|^7.0.0-alpha"
},
"require-dev": {
- "phpunit/phpunit": "^9.0||^7.0",
+ "phpunit/phpunit": "^11.0|^10.0|^9.0|^7.0",
"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-03-06T10:05:08+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": "135dfd180deffd22baa0c8cea0242d67f51dfccd"
},
"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/135dfd180deffd22baa0c8cea0242d67f51dfccd",
+ "reference": "135dfd180deffd22baa0c8cea0242d67f51dfccd",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.2.1"
+ "backpack/crud": "^7.0.0-alpha"
},
"require-dev": {
- "orchestra/testbench": "~5|~6",
- "phpunit/phpunit": "~9.0"
+ "orchestra/testbench": "^8||^9||^10||^11",
+ "phpunit/phpunit": "^10.0|^11.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-03-06T09:56:26+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": "53f2b991502426bf4ea9a17dbd38449351e0d0ba"
},
"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/53f2b991502426bf4ea9a17dbd38449351e0d0ba",
+ "reference": "53f2b991502426bf4ea9a17dbd38449351e0d0ba",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.2.1"
+ "backpack/crud": "^7.0.0-alpha"
},
"require-dev": {
- "orchestra/testbench": "~5|~6",
- "phpunit/phpunit": "~9.0"
+ "orchestra/testbench": "^8||^9||^10||^11",
+ "phpunit/phpunit": "^10.0|^11.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-03-06T09:54:42+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": "d369bdf75f69c5523e1215639c81d20d12c1288a"
},
"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/d369bdf75f69c5523e1215639c81d20d12c1288a",
+ "reference": "d369bdf75f69c5523e1215639c81d20d12c1288a",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.2.1"
+ "backpack/crud": "^7.0.0-alpha"
},
"require-dev": {
- "orchestra/testbench": "~5|~6",
- "phpunit/phpunit": "~9.0"
+ "orchestra/testbench": "^8||^9||^10||^11",
+ "phpunit/phpunit": "^10.0|^11.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-06-27T10:03:51+00:00"
+ },
+ {
+ "name": "backpack/tinymce-field",
+ "version": "dev-next",
+ "source": {
+ "type": "git",
+ "url": "git@github.com:Laravel-Backpack/tinymce-field.git",
+ "reference": "5a5ccd61603f23999ac152260ad28a50da50ff68"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Laravel-Backpack/tinymce-field/zipball/5a5ccd61603f23999ac152260ad28a50da50ff68",
+ "reference": "5a5ccd61603f23999ac152260ad28a50da50ff68",
+ "shasum": ""
+ },
+ "require": {
+ "backpack/crud": "^7.0.0-alpha"
+ },
+ "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-03-11T14:24:32+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": "6ec30208f50d5fb2b930a0e733dc48ccaa852d0b"
},
"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/6ec30208f50d5fb2b930a0e733dc48ccaa852d0b",
+ "reference": "6ec30208f50d5fb2b930a0e733dc48ccaa852d0b",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.7",
+ "backpack/crud": "^7.0.0-alpha",
"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-03-10T13:12:32+00:00"
},
{
"name": "balping/json-raw-encoder",
@@ -1753,21 +1840,21 @@
},
{
"name": "barryvdh/laravel-elfinder",
- "version": "v0.5.3",
+ "version": "v0.5.4",
"source": {
"type": "git",
"url": "https://github.com/barryvdh/laravel-elfinder.git",
- "reference": "be07b94f4588206913daccd835942d01474beb79"
+ "reference": "57c8b1361b52b3cbfdbc59f32b69bbbe244de686"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/barryvdh/laravel-elfinder/zipball/be07b94f4588206913daccd835942d01474beb79",
- "reference": "be07b94f4588206913daccd835942d01474beb79",
+ "url": "https://api.github.com/repos/barryvdh/laravel-elfinder/zipball/57c8b1361b52b3cbfdbc59f32b69bbbe244de686",
+ "reference": "57c8b1361b52b3cbfdbc59f32b69bbbe244de686",
"shasum": ""
},
"require": {
"barryvdh/elfinder-flysystem-driver": "^0.4.2|^0.5",
- "illuminate/support": "^9|^10|^11.0",
+ "illuminate/support": "^9|^10|^11.0|^12.0",
"php": "^8.1",
"studio-42/elfinder": "~2.1.62"
},
@@ -1806,36 +1893,36 @@
],
"support": {
"issues": "https://github.com/barryvdh/laravel-elfinder/issues",
- "source": "https://github.com/barryvdh/laravel-elfinder/tree/v0.5.3"
+ "source": "https://github.com/barryvdh/laravel-elfinder/tree/v0.5.4"
},
- "time": "2024-03-09T08:05:19+00:00"
+ "time": "2025-02-17T14:19:51+00:00"
},
{
"name": "blade-ui-kit/blade-icons",
- "version": "1.7.2",
+ "version": "1.8.0",
"source": {
"type": "git",
- "url": "https://github.com/blade-ui-kit/blade-icons.git",
- "reference": "75a54a3f5a2810fcf6574ab23e91b6cc229a1b53"
+ "url": "https://github.com/driesvints/blade-icons.git",
+ "reference": "7b743f27476acb2ed04cb518213d78abe096e814"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/75a54a3f5a2810fcf6574ab23e91b6cc229a1b53",
- "reference": "75a54a3f5a2810fcf6574ab23e91b6cc229a1b53",
+ "url": "https://api.github.com/repos/driesvints/blade-icons/zipball/7b743f27476acb2ed04cb518213d78abe096e814",
+ "reference": "7b743f27476acb2ed04cb518213d78abe096e814",
"shasum": ""
},
"require": {
- "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
- "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
- "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
- "illuminate/view": "^8.0|^9.0|^10.0|^11.0",
+ "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
+ "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0",
+ "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
+ "illuminate/view": "^8.0|^9.0|^10.0|^11.0|^12.0",
"php": "^7.4|^8.0",
"symfony/console": "^5.3|^6.0|^7.0",
"symfony/finder": "^5.3|^6.0|^7.0"
},
"require-dev": {
"mockery/mockery": "^1.5.1",
- "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
+ "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
"phpunit/phpunit": "^9.0|^10.5|^11.0"
},
"bin": [
@@ -1889,20 +1976,20 @@
"type": "paypal"
}
],
- "time": "2024-10-17T17:38:00+00:00"
+ "time": "2025-02-13T20:35:06+00:00"
},
{
"name": "brick/math",
- "version": "0.12.1",
+ "version": "0.13.1",
"source": {
"type": "git",
"url": "https://github.com/brick/math.git",
- "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
+ "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
- "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
+ "url": "https://api.github.com/repos/brick/math/zipball/fc7ed316430118cc7836bf45faff18d5dfc8de04",
+ "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04",
"shasum": ""
},
"require": {
@@ -1911,7 +1998,7 @@
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
"phpunit/phpunit": "^10.1",
- "vimeo/psalm": "5.16.0"
+ "vimeo/psalm": "6.8.8"
},
"type": "library",
"autoload": {
@@ -1941,7 +2028,7 @@
],
"support": {
"issues": "https://github.com/brick/math/issues",
- "source": "https://github.com/brick/math/tree/0.12.1"
+ "source": "https://github.com/brick/math/tree/0.13.1"
},
"funding": [
{
@@ -1949,31 +2036,33 @@
"type": "github"
}
],
- "time": "2023-11-29T23:19:16+00:00"
+ "time": "2025-03-29T13:50:30+00:00"
},
{
"name": "calebporzio/sushi",
- "version": "v2.4.5",
+ "version": "v2.5.3",
"source": {
"type": "git",
"url": "https://github.com/calebporzio/sushi.git",
- "reference": "932d09781bff75c812541d2d269400fd7d730bab"
+ "reference": "bf184973f943216b2aaa8dbc79631ea806038bb1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/calebporzio/sushi/zipball/932d09781bff75c812541d2d269400fd7d730bab",
- "reference": "932d09781bff75c812541d2d269400fd7d730bab",
+ "url": "https://api.github.com/repos/calebporzio/sushi/zipball/bf184973f943216b2aaa8dbc79631ea806038bb1",
+ "reference": "bf184973f943216b2aaa8dbc79631ea806038bb1",
"shasum": ""
},
"require": {
- "illuminate/database": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
- "illuminate/support": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
+ "ext-pdo_sqlite": "*",
+ "ext-sqlite3": "*",
+ "illuminate/database": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
+ "illuminate/support": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
"php": "^7.1.3|^8.0"
},
"require-dev": {
"doctrine/dbal": "^2.9 || ^3.1.4",
- "orchestra/testbench": "3.8.* || 3.9.* || ^4.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
- "phpunit/phpunit": "^7.5 || ^8.4 || ^9.0 || ^10.0"
+ "orchestra/testbench": "3.8.* || 3.9.* || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
+ "phpunit/phpunit": "^7.5 || ^8.4 || ^9.0 || ^10.0 || ^11.0"
},
"type": "library",
"autoload": {
@@ -1993,7 +2082,7 @@
],
"description": "Eloquent's missing \"array\" driver.",
"support": {
- "source": "https://github.com/calebporzio/sushi/tree/v2.4.5"
+ "source": "https://github.com/calebporzio/sushi/tree/v2.5.3"
},
"funding": [
{
@@ -2001,7 +2090,7 @@
"type": "github"
}
],
- "time": "2023-10-17T14:42:34+00:00"
+ "time": "2025-02-13T21:03:57+00:00"
},
{
"name": "carbonphp/carbon-doctrine-types",
@@ -2229,22 +2318,22 @@
},
{
"name": "consoletvs/charts",
- "version": "6.7.0",
+ "version": "6.8.0",
"source": {
"type": "git",
"url": "https://github.com/ConsoleTVs/Charts.git",
- "reference": "408b62609d79be06d229181d3b4c3a4cf6e27a1b"
+ "reference": "5bc74e6a57fb5d4a9b04a3059d40488875480b9d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ConsoleTVs/Charts/zipball/408b62609d79be06d229181d3b4c3a4cf6e27a1b",
- "reference": "408b62609d79be06d229181d3b4c3a4cf6e27a1b",
+ "url": "https://api.github.com/repos/ConsoleTVs/Charts/zipball/5bc74e6a57fb5d4a9b04a3059d40488875480b9d",
+ "reference": "5bc74e6a57fb5d4a9b04a3059d40488875480b9d",
"shasum": ""
},
"require": {
"balping/json-raw-encoder": "^1.0",
- "illuminate/console": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
- "illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
+ "illuminate/console": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
+ "illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"php": ">=7.0"
},
"type": "library",
@@ -2273,7 +2362,7 @@
"description": "The laravel charting package",
"support": {
"issues": "https://github.com/ConsoleTVs/Charts/issues",
- "source": "https://github.com/ConsoleTVs/Charts/tree/6.7.0"
+ "source": "https://github.com/ConsoleTVs/Charts/tree/6.8.0"
},
"funding": [
{
@@ -2281,29 +2370,29 @@
"type": "patreon"
}
],
- "time": "2024-03-13T10:55:51+00:00"
+ "time": "2025-02-24T15:17:19+00:00"
},
{
"name": "creativeorange/gravatar",
- "version": "v1.0.24",
+ "version": "v1.0.25",
"source": {
"type": "git",
- "url": "https://github.com/creativeorange/gravatar.git",
- "reference": "ec0d78c7d4ef6d66c3cc09b6a03ab8d53e44379f"
+ "url": "https://github.com/brainpink/gravatar.git",
+ "reference": "21ba6cbe125d57965c58468047ea29dfa822b4d3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/creativeorange/gravatar/zipball/ec0d78c7d4ef6d66c3cc09b6a03ab8d53e44379f",
- "reference": "ec0d78c7d4ef6d66c3cc09b6a03ab8d53e44379f",
+ "url": "https://api.github.com/repos/brainpink/gravatar/zipball/21ba6cbe125d57965c58468047ea29dfa822b4d3",
+ "reference": "21ba6cbe125d57965c58468047ea29dfa822b4d3",
"shasum": ""
},
"require": {
- "illuminate/support": "^5|^6|^7|^8|^9|^10.0|^11.0",
+ "illuminate/support": "^5|^6|^7|^8|^9|^10.0|^11.0|^12.0",
"php": ">=5.4.0"
},
"require-dev": {
"nunomaduro/larastan": "^0.6.2|^2.4",
- "orchestra/testbench": "^5.4|^8.0|^9.0",
+ "orchestra/testbench": "^5.4|^8.0|^9.0|^10.0",
"php": ">=7.2"
},
"type": "library",
@@ -2341,36 +2430,39 @@
"laravel"
],
"support": {
- "issues": "https://github.com/creativeorange/gravatar/issues",
- "source": "https://github.com/creativeorange/gravatar/tree/v1.0.24"
+ "issues": "https://github.com/brainpink/gravatar/issues",
+ "source": "https://github.com/brainpink/gravatar/tree/v1.0.25"
},
- "time": "2024-02-28T09:23:55+00:00"
+ "time": "2025-02-22T19:11:54+00:00"
},
{
"name": "cviebrock/eloquent-sluggable",
- "version": "11.0.1",
+ "version": "12.0.0",
"source": {
"type": "git",
"url": "https://github.com/cviebrock/eloquent-sluggable.git",
- "reference": "a4281cf0284a21efc1031a065b112ddd6c826eea"
+ "reference": "50d0c8a508cb5d6193ff6668518930ba8ec8ef24"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/cviebrock/eloquent-sluggable/zipball/a4281cf0284a21efc1031a065b112ddd6c826eea",
- "reference": "a4281cf0284a21efc1031a065b112ddd6c826eea",
+ "url": "https://api.github.com/repos/cviebrock/eloquent-sluggable/zipball/50d0c8a508cb5d6193ff6668518930ba8ec8ef24",
+ "reference": "50d0c8a508cb5d6193ff6668518930ba8ec8ef24",
"shasum": ""
},
"require": {
"cocur/slugify": "^4.3",
- "illuminate/config": "^11.0",
- "illuminate/database": "^11.0",
- "illuminate/support": "^11.0",
+ "illuminate/config": "^12.0",
+ "illuminate/database": "^12.0",
+ "illuminate/support": "^12.0",
"php": "^8.2"
},
"require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.65",
+ "larastan/larastan": "^3.0",
"mockery/mockery": "^1.4.4",
- "orchestra/testbench": "^9.0",
- "pestphp/pest": "^2.28"
+ "orchestra/testbench": "^10.0",
+ "pestphp/pest": "^3.7",
+ "phpstan/phpstan": "^2.0"
},
"type": "library",
"extra": {
@@ -2378,9 +2470,6 @@
"providers": [
"Cviebrock\\EloquentSluggable\\ServiceProvider"
]
- },
- "branch-alias": {
- "dev-master": "11.0.x-dev"
}
},
"autoload": {
@@ -2404,13 +2493,12 @@
"eloquent",
"eloquent-sluggable",
"laravel",
- "lumen",
"slug",
"sluggable"
],
"support": {
"issues": "https://github.com/cviebrock/eloquent-sluggable/issues",
- "source": "https://github.com/cviebrock/eloquent-sluggable/tree/11.0.1"
+ "source": "https://github.com/cviebrock/eloquent-sluggable/tree/12.0.0"
},
"funding": [
{
@@ -2418,7 +2506,7 @@
"type": "github"
}
],
- "time": "2024-11-29T01:32:17+00:00"
+ "time": "2025-02-26T22:53:32+00:00"
},
{
"name": "dflydev/dot-access-data",
@@ -2497,16 +2585,16 @@
},
{
"name": "doctrine/dbal",
- "version": "4.2.1",
+ "version": "4.2.4",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
- "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0"
+ "reference": "b37d160498ea91a2382a2ebe825c4ea6254fc0ec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/dbal/zipball/dadd35300837a3a2184bd47d403333b15d0a9bd0",
- "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0",
+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/b37d160498ea91a2382a2ebe825c4ea6254fc0ec",
+ "reference": "b37d160498ea91a2382a2ebe825c4ea6254fc0ec",
"shasum": ""
},
"require": {
@@ -2516,19 +2604,17 @@
"psr/log": "^1|^2|^3"
},
"require-dev": {
- "doctrine/coding-standard": "12.0.0",
+ "doctrine/coding-standard": "13.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",
- "slevomat/coding-standard": "8.13.1",
- "squizlabs/php_codesniffer": "3.10.2",
+ "phpstan/phpstan": "2.1.17",
+ "phpstan/phpstan-phpunit": "2.0.6",
+ "phpstan/phpstan-strict-rules": "^2",
+ "phpunit/phpunit": "10.5.46",
+ "slevomat/coding-standard": "8.16.2",
+ "squizlabs/php_codesniffer": "3.13.1",
"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 +2671,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.4"
},
"funding": [
{
@@ -2601,30 +2687,33 @@
"type": "tidelift"
}
],
- "time": "2024-10-10T18:01:27+00:00"
+ "time": "2025-06-15T23:15:01+00:00"
},
{
"name": "doctrine/deprecations",
- "version": "1.1.4",
+ "version": "1.1.5",
"source": {
"type": "git",
"url": "https://github.com/doctrine/deprecations.git",
- "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
+ "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
- "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
+ "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
+ "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0"
},
+ "conflict": {
+ "phpunit/phpunit": "<=7.5 || >=13"
+ },
"require-dev": {
- "doctrine/coding-standard": "^9 || ^12",
- "phpstan/phpstan": "1.4.10 || 2.0.3",
+ "doctrine/coding-standard": "^9 || ^12 || ^13",
+ "phpstan/phpstan": "1.4.10 || 2.1.11",
"phpstan/phpstan-phpunit": "^1.0 || ^2",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
"psr/log": "^1 || ^2 || ^3"
},
"suggest": {
@@ -2644,9 +2733,9 @@
"homepage": "https://www.doctrine-project.org/",
"support": {
"issues": "https://github.com/doctrine/deprecations/issues",
- "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
+ "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
},
- "time": "2024-12-07T21:18:45+00:00"
+ "time": "2025-04-07T20:06:18+00:00"
},
{
"name": "doctrine/inflector",
@@ -2883,16 +2972,16 @@
},
{
"name": "egulias/email-validator",
- "version": "4.0.3",
+ "version": "4.0.4",
"source": {
"type": "git",
"url": "https://github.com/egulias/EmailValidator.git",
- "reference": "b115554301161fa21467629f1e1391c1936de517"
+ "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b115554301161fa21467629f1e1391c1936de517",
- "reference": "b115554301161fa21467629f1e1391c1936de517",
+ "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
+ "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
"shasum": ""
},
"require": {
@@ -2938,7 +3027,7 @@
],
"support": {
"issues": "https://github.com/egulias/EmailValidator/issues",
- "source": "https://github.com/egulias/EmailValidator/tree/4.0.3"
+ "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
},
"funding": [
{
@@ -2946,7 +3035,7 @@
"type": "github"
}
],
- "time": "2024-12-27T00:36:43+00:00"
+ "time": "2025-03-06T22:45:56+00:00"
},
{
"name": "ezyang/htmlpurifier",
@@ -3144,16 +3233,16 @@
},
{
"name": "guzzlehttp/guzzle",
- "version": "7.9.2",
+ "version": "7.9.3",
"source": {
"type": "git",
"url": "https://github.com/guzzle/guzzle.git",
- "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
+ "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
- "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
+ "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
"shasum": ""
},
"require": {
@@ -3250,7 +3339,7 @@
],
"support": {
"issues": "https://github.com/guzzle/guzzle/issues",
- "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
+ "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
},
"funding": [
{
@@ -3266,20 +3355,20 @@
"type": "tidelift"
}
],
- "time": "2024-07-24T11:22:20+00:00"
+ "time": "2025-03-27T13:37:11+00:00"
},
{
"name": "guzzlehttp/promises",
- "version": "2.0.4",
+ "version": "2.2.0",
"source": {
"type": "git",
"url": "https://github.com/guzzle/promises.git",
- "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
+ "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
- "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
+ "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
"shasum": ""
},
"require": {
@@ -3333,7 +3422,7 @@
],
"support": {
"issues": "https://github.com/guzzle/promises/issues",
- "source": "https://github.com/guzzle/promises/tree/2.0.4"
+ "source": "https://github.com/guzzle/promises/tree/2.2.0"
},
"funding": [
{
@@ -3349,20 +3438,20 @@
"type": "tidelift"
}
],
- "time": "2024-10-17T10:06:22+00:00"
+ "time": "2025-03-27T13:27:01+00:00"
},
{
"name": "guzzlehttp/psr7",
- "version": "2.7.0",
+ "version": "2.7.1",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
- "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
+ "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
- "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
+ "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
"shasum": ""
},
"require": {
@@ -3449,7 +3538,7 @@
],
"support": {
"issues": "https://github.com/guzzle/psr7/issues",
- "source": "https://github.com/guzzle/psr7/tree/2.7.0"
+ "source": "https://github.com/guzzle/psr7/tree/2.7.1"
},
"funding": [
{
@@ -3465,20 +3554,20 @@
"type": "tidelift"
}
],
- "time": "2024-07-18T11:15:46+00:00"
+ "time": "2025-03-27T12:30:47+00:00"
},
{
"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 +3624,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 +3640,7 @@
"type": "tidelift"
}
],
- "time": "2023-12-03T19:50:20+00:00"
+ "time": "2025-02-03T10:55:03+00:00"
},
{
"name": "intervention/image",
@@ -3639,20 +3728,20 @@
},
{
"name": "laravel/framework",
- "version": "v11.37.0",
+ "version": "v12.19.3",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "6cb103d2024b087eae207654b3f4b26646119ba5"
+ "reference": "4e6ec689ef704bb4bd282f29d9dd658dfb4fb262"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/6cb103d2024b087eae207654b3f4b26646119ba5",
- "reference": "6cb103d2024b087eae207654b3f4b26646119ba5",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/4e6ec689ef704bb4bd282f29d9dd658dfb4fb262",
+ "reference": "4e6ec689ef704bb4bd282f29d9dd658dfb4fb262",
"shasum": ""
},
"require": {
- "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
+ "brick/math": "^0.11|^0.12|^0.13",
"composer-runtime-api": "^2.2",
"doctrine/inflector": "^2.0.5",
"dragonmantank/cron-expression": "^3.4",
@@ -3667,32 +3756,32 @@
"fruitcake/php-cors": "^1.3",
"guzzlehttp/guzzle": "^7.8.2",
"guzzlehttp/uri-template": "^1.0",
- "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
+ "laravel/prompts": "^0.3.0",
"laravel/serializable-closure": "^1.3|^2.0",
- "league/commonmark": "^2.6",
+ "league/commonmark": "^2.7",
"league/flysystem": "^3.25.1",
"league/flysystem-local": "^3.25.1",
"league/uri": "^7.5.1",
"monolog/monolog": "^3.0",
- "nesbot/carbon": "^2.72.2|^3.4",
+ "nesbot/carbon": "^3.8.4",
"nunomaduro/termwind": "^2.0",
"php": "^8.2",
"psr/container": "^1.1.1|^2.0.1",
"psr/log": "^1.0|^2.0|^3.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"ramsey/uuid": "^4.7",
- "symfony/console": "^7.0.3",
- "symfony/error-handler": "^7.0.3",
- "symfony/finder": "^7.0.3",
+ "symfony/console": "^7.2.0",
+ "symfony/error-handler": "^7.2.0",
+ "symfony/finder": "^7.2.0",
"symfony/http-foundation": "^7.2.0",
- "symfony/http-kernel": "^7.0.3",
- "symfony/mailer": "^7.0.3",
- "symfony/mime": "^7.0.3",
+ "symfony/http-kernel": "^7.2.0",
+ "symfony/mailer": "^7.2.0",
+ "symfony/mime": "^7.2.0",
"symfony/polyfill-php83": "^1.31",
- "symfony/process": "^7.0.3",
- "symfony/routing": "^7.0.3",
- "symfony/uid": "^7.0.3",
- "symfony/var-dumper": "^7.0.3",
+ "symfony/process": "^7.2.0",
+ "symfony/routing": "^7.2.0",
+ "symfony/uid": "^7.2.0",
+ "symfony/var-dumper": "^7.2.0",
"tijsverkoyen/css-to-inline-styles": "^2.2.5",
"vlucas/phpdotenv": "^5.6.1",
"voku/portable-ascii": "^2.0.2"
@@ -3749,23 +3838,24 @@
"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",
"league/flysystem-read-only": "^3.25.1",
"league/flysystem-sftp-v3": "^3.25.1",
"mockery/mockery": "^1.6.10",
- "orchestra/testbench-core": "^9.6",
- "pda/pheanstalk": "^5.0.6",
+ "orchestra/testbench-core": "^10.0.0",
+ "pda/pheanstalk": "^5.0.6|^7.0.0",
"php-http/discovery": "^1.15",
- "phpstan/phpstan": "^1.11.5",
- "phpunit/phpunit": "^10.5.35|^11.3.6",
- "predis/predis": "^2.3",
+ "phpstan/phpstan": "^2.0",
+ "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
+ "predis/predis": "^2.3|^3.0",
"resend/resend-php": "^0.10.0",
- "symfony/cache": "^7.0.3",
- "symfony/http-client": "^7.0.3",
- "symfony/psr-http-message-bridge": "^7.0.3",
- "symfony/translation": "^7.0.3"
+ "symfony/cache": "^7.2.0",
+ "symfony/http-client": "^7.2.0",
+ "symfony/psr-http-message-bridge": "^7.2.0",
+ "symfony/translation": "^7.2.0"
},
"suggest": {
"ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
@@ -3791,22 +3881,22 @@
"mockery/mockery": "Required to use mocking (^1.6).",
"pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
"php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
- "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
- "predis/predis": "Required to use the predis connector (^2.3).",
+ "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).",
+ "predis/predis": "Required to use the predis connector (^2.3|^3.0).",
"psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
"pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
"resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
- "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
- "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
- "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
- "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
- "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
- "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
+ "symfony/cache": "Required to PSR-6 cache bridge (^7.2).",
+ "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
+ "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).",
+ "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).",
+ "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).",
+ "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)."
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "11.x-dev"
+ "dev-master": "12.x-dev"
}
},
"autoload": {
@@ -3849,24 +3939,24 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2025-01-02T20:10:21+00:00"
+ "time": "2025-06-18T12:56:23+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 +3995,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.5",
"source": {
"type": "git",
"url": "https://github.com/laravel/prompts.git",
- "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f"
+ "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/prompts/zipball/0e0535747c6b8d6d10adca8b68293cf4517abb0f",
- "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f",
+ "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1",
+ "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1",
"shasum": ""
},
"require": {
@@ -3932,7 +4022,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 +4052,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.5"
},
- "time": "2024-11-12T14:59:47+00:00"
+ "time": "2025-02-11T13:34:40+00:00"
},
{
"name": "laravel/serializable-closure",
- "version": "v2.0.1",
+ "version": "v2.0.4",
"source": {
"type": "git",
"url": "https://github.com/laravel/serializable-closure.git",
- "reference": "613b2d4998f85564d40497e05e89cb6d9bd1cbe8"
+ "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841"
},
"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/b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
+ "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
"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 +4115,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-03-19T13:51:03+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 +4142,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,22 +4179,22 @@
],
"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",
- "version": "2.6.1",
+ "version": "2.7.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/commonmark.git",
- "reference": "d990688c91cedfb69753ffc2512727ec646df2ad"
+ "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d990688c91cedfb69753ffc2512727ec646df2ad",
- "reference": "d990688c91cedfb69753ffc2512727ec646df2ad",
+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
+ "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
"shasum": ""
},
"require": {
@@ -4141,7 +4231,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "2.7-dev"
+ "dev-main": "2.8-dev"
}
},
"autoload": {
@@ -4198,7 +4288,7 @@
"type": "tidelift"
}
],
- "time": "2024-12-29T14:10:59+00:00"
+ "time": "2025-05-05T12:20:28+00:00"
},
{
"name": "league/config",
@@ -4284,16 +4374,16 @@
},
{
"name": "league/flysystem",
- "version": "3.29.1",
+ "version": "3.30.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
+ "reference": "2203e3151755d874bb2943649dae1eb8533ac93e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
- "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2203e3151755d874bb2943649dae1eb8533ac93e",
+ "reference": "2203e3151755d874bb2943649dae1eb8533ac93e",
"shasum": ""
},
"require": {
@@ -4317,13 +4407,13 @@
"composer/semver": "^3.0",
"ext-fileinfo": "*",
"ext-ftp": "*",
- "ext-mongodb": "^1.3",
+ "ext-mongodb": "^1.3|^2",
"ext-zip": "*",
"friendsofphp/php-cs-fixer": "^3.5",
"google/cloud-storage": "^1.23",
"guzzlehttp/psr7": "^2.6",
"microsoft/azure-storage-blob": "^1.1",
- "mongodb/mongodb": "^1.2",
+ "mongodb/mongodb": "^1.2|^2",
"phpseclib/phpseclib": "^3.0.36",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5.11|^10.0",
@@ -4361,9 +4451,9 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.30.0"
},
- "time": "2024-10-08T08:58:34+00:00"
+ "time": "2025-06-25T13:29:59+00:00"
},
{
"name": "league/flysystem-aws-s3-v3",
@@ -4422,16 +4512,16 @@
},
{
"name": "league/flysystem-local",
- "version": "3.29.0",
+ "version": "3.30.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-local.git",
- "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
+ "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
- "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/6691915f77c7fb69adfb87dcd550052dc184ee10",
+ "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10",
"shasum": ""
},
"require": {
@@ -4465,9 +4555,9 @@
"local"
],
"support": {
- "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
+ "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.0"
},
- "time": "2024-08-09T21:24:39+00:00"
+ "time": "2025-05-21T10:34:19+00:00"
},
{
"name": "league/mime-type-detection",
@@ -4701,31 +4791,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 +4857,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,27 +4865,27 @@
"type": "github"
}
],
- "time": "2024-10-10T12:33:01+00:00"
+ "time": "2025-01-27T12:07:53+00:00"
},
{
"name": "mews/purifier",
- "version": "3.4.2",
+ "version": "3.4.3",
"source": {
"type": "git",
"url": "https://github.com/mewebstudio/Purifier.git",
- "reference": "d4d3830267eeda7b385d61dd680ace14dcf142df"
+ "reference": "acc71bc512dcf9b87144546d0e3055fc76d244ff"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/d4d3830267eeda7b385d61dd680ace14dcf142df",
- "reference": "d4d3830267eeda7b385d61dd680ace14dcf142df",
+ "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/acc71bc512dcf9b87144546d0e3055fc76d244ff",
+ "reference": "acc71bc512dcf9b87144546d0e3055fc76d244ff",
"shasum": ""
},
"require": {
"ezyang/htmlpurifier": "^4.16.0",
- "illuminate/config": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
- "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
- "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
+ "illuminate/config": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
+ "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
+ "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"php": "^7.2|^8.0"
},
"require-dev": {
@@ -4850,22 +4941,22 @@
],
"support": {
"issues": "https://github.com/mewebstudio/Purifier/issues",
- "source": "https://github.com/mewebstudio/Purifier/tree/3.4.2"
+ "source": "https://github.com/mewebstudio/Purifier/tree/3.4.3"
},
- "time": "2024-03-20T16:18:22+00:00"
+ "time": "2025-02-24T16:00:29+00:00"
},
{
"name": "monolog/monolog",
- "version": "3.8.1",
+ "version": "3.9.0",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/monolog.git",
- "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
+ "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
- "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
+ "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
"shasum": ""
},
"require": {
@@ -4943,7 +5034,7 @@
],
"support": {
"issues": "https://github.com/Seldaek/monolog/issues",
- "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
+ "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
},
"funding": [
{
@@ -4955,7 +5046,7 @@
"type": "tidelift"
}
],
- "time": "2024-12-05T17:15:07+00:00"
+ "time": "2025-03-24T10:02:05+00:00"
},
{
"name": "mtdowling/jmespath.php",
@@ -5025,16 +5116,16 @@
},
{
"name": "nesbot/carbon",
- "version": "3.8.4",
+ "version": "3.10.1",
"source": {
"type": "git",
- "url": "https://github.com/briannesbitt/Carbon.git",
- "reference": "129700ed449b1f02d70272d2ac802357c8c30c58"
+ "url": "https://github.com/CarbonPHP/carbon.git",
+ "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/129700ed449b1f02d70272d2ac802357c8c30c58",
- "reference": "129700ed449b1f02d70272d2ac802357c8c30c58",
+ "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/1fd1935b2d90aef2f093c5e35f7ae1257c448d00",
+ "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00",
"shasum": ""
},
"require": {
@@ -5042,9 +5133,9 @@
"ext-json": "*",
"php": "^8.1",
"psr/clock": "^1.0",
- "symfony/clock": "^6.3 || ^7.0",
+ "symfony/clock": "^6.3.12 || ^7.0",
"symfony/polyfill-mbstring": "^1.0",
- "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
+ "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0"
},
"provide": {
"psr/clock-implementation": "1.0"
@@ -5052,14 +5143,13 @@
"require-dev": {
"doctrine/dbal": "^3.6.3 || ^4.0",
"doctrine/orm": "^2.15.2 || ^3.0",
- "friendsofphp/php-cs-fixer": "^3.57.2",
+ "friendsofphp/php-cs-fixer": "^3.75.0",
"kylekatarnls/multi-tester": "^2.5.3",
- "ondrejmirtes/better-reflection": "^6.25.0.4",
"phpmd/phpmd": "^2.15.0",
- "phpstan/extension-installer": "^1.3.1",
- "phpstan/phpstan": "^1.11.2",
- "phpunit/phpunit": "^10.5.20",
- "squizlabs/php_codesniffer": "^3.9.0"
+ "phpstan/extension-installer": "^1.4.3",
+ "phpstan/phpstan": "^2.1.17",
+ "phpunit/phpunit": "^10.5.46",
+ "squizlabs/php_codesniffer": "^3.13.0"
},
"bin": [
"bin/carbon"
@@ -5110,8 +5200,8 @@
],
"support": {
"docs": "https://carbon.nesbot.com/docs",
- "issues": "https://github.com/briannesbitt/Carbon/issues",
- "source": "https://github.com/briannesbitt/Carbon"
+ "issues": "https://github.com/CarbonPHP/carbon/issues",
+ "source": "https://github.com/CarbonPHP/carbon"
},
"funding": [
{
@@ -5127,7 +5217,7 @@
"type": "tidelift"
}
],
- "time": "2024-12-27T09:25:35+00:00"
+ "time": "2025-06-21T15:19:35+00:00"
},
{
"name": "nette/schema",
@@ -5193,16 +5283,16 @@
},
{
"name": "nette/utils",
- "version": "v4.0.5",
+ "version": "v4.0.7",
"source": {
"type": "git",
"url": "https://github.com/nette/utils.git",
- "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
+ "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
- "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
+ "url": "https://api.github.com/repos/nette/utils/zipball/e67c4061eb40b9c113b218214e42cb5a0dda28f2",
+ "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2",
"shasum": ""
},
"require": {
@@ -5273,22 +5363,22 @@
],
"support": {
"issues": "https://github.com/nette/utils/issues",
- "source": "https://github.com/nette/utils/tree/v4.0.5"
+ "source": "https://github.com/nette/utils/tree/v4.0.7"
},
- "time": "2024-08-07T15:39:19+00:00"
+ "time": "2025-06-03T04:55:08+00:00"
},
{
"name": "nikic/php-parser",
- "version": "v5.4.0",
+ "version": "v5.5.0",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
+ "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
- "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
+ "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
"shasum": ""
},
"require": {
@@ -5331,37 +5421,37 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0"
+ "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
},
- "time": "2024-12-30T11:07:19+00:00"
+ "time": "2025-05-31T08:24:38+00:00"
},
{
"name": "nunomaduro/termwind",
- "version": "v2.3.0",
+ "version": "v2.3.1",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/termwind.git",
- "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
+ "reference": "dfa08f390e509967a15c22493dc0bac5733d9123"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
- "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
+ "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dfa08f390e509967a15c22493dc0bac5733d9123",
+ "reference": "dfa08f390e509967a15c22493dc0bac5733d9123",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
"php": "^8.2",
- "symfony/console": "^7.1.8"
+ "symfony/console": "^7.2.6"
},
"require-dev": {
- "illuminate/console": "^11.33.2",
- "laravel/pint": "^1.18.2",
+ "illuminate/console": "^11.44.7",
+ "laravel/pint": "^1.22.0",
"mockery/mockery": "^1.6.12",
- "pestphp/pest": "^2.36.0",
- "phpstan/phpstan": "^1.12.11",
- "phpstan/phpstan-strict-rules": "^1.6.1",
- "symfony/var-dumper": "^7.1.8",
+ "pestphp/pest": "^2.36.0 || ^3.8.2",
+ "phpstan/phpstan": "^1.12.25",
+ "phpstan/phpstan-strict-rules": "^1.6.2",
+ "symfony/var-dumper": "^7.2.6",
"thecodingmachine/phpstan-strict-rules": "^1.0.0"
},
"type": "library",
@@ -5404,7 +5494,7 @@
],
"support": {
"issues": "https://github.com/nunomaduro/termwind/issues",
- "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
+ "source": "https://github.com/nunomaduro/termwind/tree/v2.3.1"
},
"funding": [
{
@@ -5420,30 +5510,30 @@
"type": "github"
}
],
- "time": "2024-11-21T10:39:51+00:00"
+ "time": "2025-05-08T08:14:37+00:00"
},
{
"name": "outhebox/blade-flags",
- "version": "1.5.2",
+ "version": "1.5.3",
"source": {
"type": "git",
"url": "https://github.com/MohmmedAshraf/blade-flags.git",
- "reference": "433a9b0c9218b6dcdf6bf7a3c85b61c1721c4250"
+ "reference": "84d37c6c44e5509412c894a90ecdad737b96488f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/MohmmedAshraf/blade-flags/zipball/433a9b0c9218b6dcdf6bf7a3c85b61c1721c4250",
- "reference": "433a9b0c9218b6dcdf6bf7a3c85b61c1721c4250",
+ "url": "https://api.github.com/repos/MohmmedAshraf/blade-flags/zipball/84d37c6c44e5509412c894a90ecdad737b96488f",
+ "reference": "84d37c6c44e5509412c894a90ecdad737b96488f",
"shasum": ""
},
"require": {
"blade-ui-kit/blade-icons": "^1.1",
- "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
+ "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
"php": "^7.4|^8.0|^8.1|^8.2"
},
"require-dev": {
- "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
- "phpunit/phpunit": "^9.0|^10.5"
+ "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
+ "phpunit/phpunit": "^9.0|^10.5|^11.5.3"
},
"type": "library",
"extra": {
@@ -5480,7 +5570,7 @@
],
"support": {
"issues": "https://github.com/MohmmedAshraf/blade-flags/issues",
- "source": "https://github.com/MohmmedAshraf/blade-flags/tree/1.5.2"
+ "source": "https://github.com/MohmmedAshraf/blade-flags/tree/1.5.3"
},
"funding": [
{
@@ -5488,7 +5578,7 @@
"type": "github"
}
],
- "time": "2024-12-26T05:32:26+00:00"
+ "time": "2025-02-24T15:04:52+00:00"
},
{
"name": "panphp/pan",
@@ -5655,22 +5745,22 @@
},
{
"name": "prologue/alerts",
- "version": "1.2.0",
+ "version": "1.3.0",
"source": {
"type": "git",
"url": "https://github.com/prologuephp/alerts.git",
- "reference": "00c4662ce50a633c39d3424698baa5cbfb880da3"
+ "reference": "0a73c65c70d4838a79cc927e8c966a00b2cefcfc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/prologuephp/alerts/zipball/00c4662ce50a633c39d3424698baa5cbfb880da3",
- "reference": "00c4662ce50a633c39d3424698baa5cbfb880da3",
+ "url": "https://api.github.com/repos/prologuephp/alerts/zipball/0a73c65c70d4838a79cc927e8c966a00b2cefcfc",
+ "reference": "0a73c65c70d4838a79cc927e8c966a00b2cefcfc",
"shasum": ""
},
"require": {
- "illuminate/config": "~9|^10|^11.0",
- "illuminate/session": "~9|^10|^11.0",
- "illuminate/support": "~9|^10|^11.0"
+ "illuminate/config": "~9|^10|^11.0|^12.0",
+ "illuminate/session": "~9|^10|^11.0|^12.0",
+ "illuminate/support": "~9|^10|^11.0|^12.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
@@ -5718,9 +5808,9 @@
],
"support": {
"issues": "https://github.com/prologuephp/alerts/issues",
- "source": "https://github.com/prologuephp/alerts/tree/1.2.0"
+ "source": "https://github.com/prologuephp/alerts/tree/1.3.0"
},
- "time": "2024-03-12T11:23:19+00:00"
+ "time": "2025-02-24T15:15:54+00:00"
},
{
"name": "psr/cache",
@@ -6185,16 +6275,16 @@
},
{
"name": "psy/psysh",
- "version": "v0.12.7",
+ "version": "v0.12.9",
"source": {
"type": "git",
"url": "https://github.com/bobthecow/psysh.git",
- "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c"
+ "reference": "1b801844becfe648985372cb4b12ad6840245ace"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
- "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace",
+ "reference": "1b801844becfe648985372cb4b12ad6840245ace",
"shasum": ""
},
"require": {
@@ -6258,9 +6348,9 @@
],
"support": {
"issues": "https://github.com/bobthecow/psysh/issues",
- "source": "https://github.com/bobthecow/psysh/tree/v0.12.7"
+ "source": "https://github.com/bobthecow/psysh/tree/v0.12.9"
},
- "time": "2024-12-10T01:58:33+00:00"
+ "time": "2025-06-23T02:35:06+00:00"
},
{
"name": "ralouphie/getallheaders",
@@ -6308,16 +6398,16 @@
},
{
"name": "ramsey/collection",
- "version": "2.0.0",
+ "version": "2.1.1",
"source": {
"type": "git",
"url": "https://github.com/ramsey/collection.git",
- "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
+ "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
- "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
+ "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
+ "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
"shasum": ""
},
"require": {
@@ -6325,25 +6415,22 @@
},
"require-dev": {
"captainhook/plugin-composer": "^5.3",
- "ergebnis/composer-normalize": "^2.28.3",
- "fakerphp/faker": "^1.21",
+ "ergebnis/composer-normalize": "^2.45",
+ "fakerphp/faker": "^1.24",
"hamcrest/hamcrest-php": "^2.0",
- "jangregor/phpstan-prophecy": "^1.0",
- "mockery/mockery": "^1.5",
+ "jangregor/phpstan-prophecy": "^2.1",
+ "mockery/mockery": "^1.6",
"php-parallel-lint/php-console-highlighter": "^1.0",
- "php-parallel-lint/php-parallel-lint": "^1.3",
- "phpcsstandards/phpcsutils": "^1.0.0-rc1",
- "phpspec/prophecy-phpunit": "^2.0",
- "phpstan/extension-installer": "^1.2",
- "phpstan/phpstan": "^1.9",
- "phpstan/phpstan-mockery": "^1.1",
- "phpstan/phpstan-phpunit": "^1.3",
- "phpunit/phpunit": "^9.5",
- "psalm/plugin-mockery": "^1.1",
- "psalm/plugin-phpunit": "^0.18.4",
- "ramsey/coding-standard": "^2.0.3",
- "ramsey/conventional-commits": "^1.3",
- "vimeo/psalm": "^5.4"
+ "php-parallel-lint/php-parallel-lint": "^1.4",
+ "phpspec/prophecy-phpunit": "^2.3",
+ "phpstan/extension-installer": "^1.4",
+ "phpstan/phpstan": "^2.1",
+ "phpstan/phpstan-mockery": "^2.0",
+ "phpstan/phpstan-phpunit": "^2.0",
+ "phpunit/phpunit": "^10.5",
+ "ramsey/coding-standard": "^2.3",
+ "ramsey/conventional-commits": "^1.6",
+ "roave/security-advisories": "dev-latest"
},
"type": "library",
"extra": {
@@ -6381,37 +6468,26 @@
],
"support": {
"issues": "https://github.com/ramsey/collection/issues",
- "source": "https://github.com/ramsey/collection/tree/2.0.0"
+ "source": "https://github.com/ramsey/collection/tree/2.1.1"
},
- "funding": [
- {
- "url": "https://github.com/ramsey",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
- "type": "tidelift"
- }
- ],
- "time": "2022-12-31T21:50:55+00:00"
+ "time": "2025-03-22T05:38:12+00:00"
},
{
"name": "ramsey/uuid",
- "version": "4.7.6",
+ "version": "4.9.0",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
- "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
+ "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
- "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
+ "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
"shasum": ""
},
"require": {
- "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
- "ext-json": "*",
+ "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
"php": "^8.0",
"ramsey/collection": "^1.2 || ^2.0"
},
@@ -6419,26 +6495,23 @@
"rhumsaa/uuid": "self.version"
},
"require-dev": {
- "captainhook/captainhook": "^5.10",
+ "captainhook/captainhook": "^5.25",
"captainhook/plugin-composer": "^5.3",
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
- "doctrine/annotations": "^1.8",
- "ergebnis/composer-normalize": "^2.15",
- "mockery/mockery": "^1.3",
+ "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
+ "ergebnis/composer-normalize": "^2.47",
+ "mockery/mockery": "^1.6",
"paragonie/random-lib": "^2",
- "php-mock/php-mock": "^2.2",
- "php-mock/php-mock-mockery": "^1.3",
- "php-parallel-lint/php-parallel-lint": "^1.1",
- "phpbench/phpbench": "^1.0",
- "phpstan/extension-installer": "^1.1",
- "phpstan/phpstan": "^1.8",
- "phpstan/phpstan-mockery": "^1.1",
- "phpstan/phpstan-phpunit": "^1.1",
- "phpunit/phpunit": "^8.5 || ^9",
- "ramsey/composer-repl": "^1.4",
- "slevomat/coding-standard": "^8.4",
- "squizlabs/php_codesniffer": "^3.5",
- "vimeo/psalm": "^4.9"
+ "php-mock/php-mock": "^2.6",
+ "php-mock/php-mock-mockery": "^1.5",
+ "php-parallel-lint/php-parallel-lint": "^1.4.0",
+ "phpbench/phpbench": "^1.2.14",
+ "phpstan/extension-installer": "^1.4",
+ "phpstan/phpstan": "^2.1",
+ "phpstan/phpstan-mockery": "^2.0",
+ "phpstan/phpstan-phpunit": "^2.0",
+ "phpunit/phpunit": "^9.6",
+ "slevomat/coding-standard": "^8.18",
+ "squizlabs/php_codesniffer": "^3.13"
},
"suggest": {
"ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
@@ -6473,32 +6546,22 @@
],
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
- "source": "https://github.com/ramsey/uuid/tree/4.7.6"
+ "source": "https://github.com/ramsey/uuid/tree/4.9.0"
},
- "funding": [
- {
- "url": "https://github.com/ramsey",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
- "type": "tidelift"
- }
- ],
- "time": "2024-04-27T21:32:50+00:00"
+ "time": "2025-06-25T14:20:11+00:00"
},
{
"name": "spatie/backtrace",
- "version": "1.7.1",
+ "version": "1.7.4",
"source": {
"type": "git",
"url": "https://github.com/spatie/backtrace.git",
- "reference": "0f2477c520e3729de58e061b8192f161c99f770b"
+ "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/backtrace/zipball/0f2477c520e3729de58e061b8192f161c99f770b",
- "reference": "0f2477c520e3729de58e061b8192f161c99f770b",
+ "url": "https://api.github.com/repos/spatie/backtrace/zipball/cd37a49fce7137359ac30ecc44ef3e16404cccbe",
+ "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe",
"shasum": ""
},
"require": {
@@ -6536,7 +6599,7 @@
"spatie"
],
"support": {
- "source": "https://github.com/spatie/backtrace/tree/1.7.1"
+ "source": "https://github.com/spatie/backtrace/tree/1.7.4"
},
"funding": [
{
@@ -6548,20 +6611,20 @@
"type": "other"
}
],
- "time": "2024-12-02T13:28:15+00:00"
+ "time": "2025-05-08T15:41:09+00:00"
},
{
"name": "spatie/db-dumper",
- "version": "3.7.1",
+ "version": "3.8.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/db-dumper.git",
- "reference": "55d4d6710e1ab18c1e7ce2b22b8ad4bea2a30016"
+ "reference": "91e1fd4dc000aefc9753cda2da37069fc996baee"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/db-dumper/zipball/55d4d6710e1ab18c1e7ce2b22b8ad4bea2a30016",
- "reference": "55d4d6710e1ab18c1e7ce2b22b8ad4bea2a30016",
+ "url": "https://api.github.com/repos/spatie/db-dumper/zipball/91e1fd4dc000aefc9753cda2da37069fc996baee",
+ "reference": "91e1fd4dc000aefc9753cda2da37069fc996baee",
"shasum": ""
},
"require": {
@@ -6599,7 +6662,7 @@
"spatie"
],
"support": {
- "source": "https://github.com/spatie/db-dumper/tree/3.7.1"
+ "source": "https://github.com/spatie/db-dumper/tree/3.8.0"
},
"funding": [
{
@@ -6611,34 +6674,34 @@
"type": "github"
}
],
- "time": "2024-11-18T14:54:31+00:00"
+ "time": "2025-02-14T15:04:22+00:00"
},
{
"name": "spatie/error-solutions",
- "version": "1.1.2",
+ "version": "1.1.3",
"source": {
"type": "git",
"url": "https://github.com/spatie/error-solutions.git",
- "reference": "d239a65235a1eb128dfa0a4e4c4ef032ea11b541"
+ "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/error-solutions/zipball/d239a65235a1eb128dfa0a4e4c4ef032ea11b541",
- "reference": "d239a65235a1eb128dfa0a4e4c4ef032ea11b541",
+ "url": "https://api.github.com/repos/spatie/error-solutions/zipball/e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
+ "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
"shasum": ""
},
"require": {
"php": "^8.0"
},
"require-dev": {
- "illuminate/broadcasting": "^10.0|^11.0",
- "illuminate/cache": "^10.0|^11.0",
- "illuminate/support": "^10.0|^11.0",
- "livewire/livewire": "^2.11|^3.3.5",
+ "illuminate/broadcasting": "^10.0|^11.0|^12.0",
+ "illuminate/cache": "^10.0|^11.0|^12.0",
+ "illuminate/support": "^10.0|^11.0|^12.0",
+ "livewire/livewire": "^2.11|^3.5.20",
"openai-php/client": "^0.10.1",
- "orchestra/testbench": "^7.0|8.22.3|^9.0",
- "pestphp/pest": "^2.20",
- "phpstan/phpstan": "^1.11",
+ "orchestra/testbench": "8.22.3|^9.0|^10.0",
+ "pestphp/pest": "^2.20|^3.0",
+ "phpstan/phpstan": "^2.1",
"psr/simple-cache": "^3.0",
"psr/simple-cache-implementation": "^3.0",
"spatie/ray": "^1.28",
@@ -6677,7 +6740,7 @@
],
"support": {
"issues": "https://github.com/spatie/error-solutions/issues",
- "source": "https://github.com/spatie/error-solutions/tree/1.1.2"
+ "source": "https://github.com/spatie/error-solutions/tree/1.1.3"
},
"funding": [
{
@@ -6685,24 +6748,24 @@
"type": "github"
}
],
- "time": "2024-12-11T09:51:56+00:00"
+ "time": "2025-02-14T12:29:50+00:00"
},
{
"name": "spatie/flare-client-php",
- "version": "1.10.0",
+ "version": "1.10.1",
"source": {
"type": "git",
"url": "https://github.com/spatie/flare-client-php.git",
- "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272"
+ "reference": "bf1716eb98bd689451b071548ae9e70738dce62f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/140a42b2c5d59ac4ecf8f5b493386a4f2eb28272",
- "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272",
+ "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/bf1716eb98bd689451b071548ae9e70738dce62f",
+ "reference": "bf1716eb98bd689451b071548ae9e70738dce62f",
"shasum": ""
},
"require": {
- "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
+ "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0",
"php": "^8.0",
"spatie/backtrace": "^1.6.1",
"symfony/http-foundation": "^5.2|^6.0|^7.0",
@@ -6746,7 +6809,7 @@
],
"support": {
"issues": "https://github.com/spatie/flare-client-php/issues",
- "source": "https://github.com/spatie/flare-client-php/tree/1.10.0"
+ "source": "https://github.com/spatie/flare-client-php/tree/1.10.1"
},
"funding": [
{
@@ -6754,20 +6817,20 @@
"type": "github"
}
],
- "time": "2024-12-02T14:30:06+00:00"
+ "time": "2025-02-14T13:42:06+00:00"
},
{
"name": "spatie/ignition",
- "version": "1.15.0",
+ "version": "1.15.1",
"source": {
"type": "git",
"url": "https://github.com/spatie/ignition.git",
- "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2"
+ "reference": "31f314153020aee5af3537e507fef892ffbf8c85"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
- "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
+ "url": "https://api.github.com/repos/spatie/ignition/zipball/31f314153020aee5af3537e507fef892ffbf8c85",
+ "reference": "31f314153020aee5af3537e507fef892ffbf8c85",
"shasum": ""
},
"require": {
@@ -6780,7 +6843,7 @@
"symfony/var-dumper": "^5.4|^6.0|^7.0"
},
"require-dev": {
- "illuminate/cache": "^9.52|^10.0|^11.0",
+ "illuminate/cache": "^9.52|^10.0|^11.0|^12.0",
"mockery/mockery": "^1.4",
"pestphp/pest": "^1.20|^2.0",
"phpstan/extension-installer": "^1.1",
@@ -6837,20 +6900,20 @@
"type": "github"
}
],
- "time": "2024-06-12T14:55:22+00:00"
+ "time": "2025-02-21T14:31:39+00:00"
},
{
"name": "spatie/image",
- "version": "3.7.4",
+ "version": "3.8.5",
"source": {
"type": "git",
"url": "https://github.com/spatie/image.git",
- "reference": "d72d1ae07f91a3c1230e064acd4fd8c334ab237b"
+ "reference": "a63f60b7387ebeacab463e79a95deb7ffed75430"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/image/zipball/d72d1ae07f91a3c1230e064acd4fd8c334ab237b",
- "reference": "d72d1ae07f91a3c1230e064acd4fd8c334ab237b",
+ "url": "https://api.github.com/repos/spatie/image/zipball/a63f60b7387ebeacab463e79a95deb7ffed75430",
+ "reference": "a63f60b7387ebeacab463e79a95deb7ffed75430",
"shasum": ""
},
"require": {
@@ -6898,7 +6961,7 @@
"spatie"
],
"support": {
- "source": "https://github.com/spatie/image/tree/3.7.4"
+ "source": "https://github.com/spatie/image/tree/3.8.5"
},
"funding": [
{
@@ -6910,7 +6973,7 @@
"type": "github"
}
],
- "time": "2024-10-07T09:03:34+00:00"
+ "time": "2025-06-27T12:44:55+00:00"
},
{
"name": "spatie/image-optimizer",
@@ -6969,29 +7032,29 @@
},
{
"name": "spatie/laravel-activitylog",
- "version": "4.9.1",
+ "version": "4.10.2",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-activitylog.git",
- "reference": "9abddaa9f2681d97943748c7fa04161cf4642e8c"
+ "reference": "bb879775d487438ed9a99e64f09086b608990c10"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-activitylog/zipball/9abddaa9f2681d97943748c7fa04161cf4642e8c",
- "reference": "9abddaa9f2681d97943748c7fa04161cf4642e8c",
+ "url": "https://api.github.com/repos/spatie/laravel-activitylog/zipball/bb879775d487438ed9a99e64f09086b608990c10",
+ "reference": "bb879775d487438ed9a99e64f09086b608990c10",
"shasum": ""
},
"require": {
- "illuminate/config": "^8.0 || ^9.0 || ^10.0 || ^11.0",
- "illuminate/database": "^8.69 || ^9.27 || ^10.0 || ^11.0",
- "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0",
+ "illuminate/config": "^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
+ "illuminate/database": "^8.69 || ^9.27 || ^10.0 || ^11.0 || ^12.0",
+ "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
"php": "^8.1",
"spatie/laravel-package-tools": "^1.6.3"
},
"require-dev": {
"ext-json": "*",
- "orchestra/testbench": "^6.23 || ^7.0 || ^8.0 || ^9.0",
- "pestphp/pest": "^1.20 || ^2.0"
+ "orchestra/testbench": "^6.23 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
+ "pestphp/pest": "^1.20 || ^2.0 || ^3.0"
},
"type": "library",
"extra": {
@@ -7044,7 +7107,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-activitylog/issues",
- "source": "https://github.com/spatie/laravel-activitylog/tree/4.9.1"
+ "source": "https://github.com/spatie/laravel-activitylog/tree/4.10.2"
},
"funding": [
{
@@ -7056,33 +7119,33 @@
"type": "github"
}
],
- "time": "2024-11-18T11:31:57+00:00"
+ "time": "2025-06-15T06:59:49+00:00"
},
{
"name": "spatie/laravel-backup",
- "version": "8.8.2",
+ "version": "9.3.3",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-backup.git",
- "reference": "5b672713283703a74c629ccd67b1d77eb57e24b9"
+ "reference": "5820c1b50a8991c0c824c322c1c81f5724f4d41c"
},
"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/5820c1b50a8991c0c824c322c1c81f5724f4d41c",
+ "reference": "5820c1b50a8991c0c824c322c1c81f5724f4d41c",
"shasum": ""
},
"require": {
"ext-zip": "^1.14.0",
- "illuminate/console": "^10.10.0|^11.0",
- "illuminate/contracts": "^10.10.0|^11.0",
- "illuminate/events": "^10.10.0|^11.0",
- "illuminate/filesystem": "^10.10.0|^11.0",
- "illuminate/notifications": "^10.10.0|^11.0",
- "illuminate/support": "^10.10.0|^11.0",
+ "illuminate/console": "^10.10.0|^11.0|^12.0",
+ "illuminate/contracts": "^10.10.0|^11.0|^12.0",
+ "illuminate/events": "^10.10.0|^11.0|^12.0",
+ "illuminate/filesystem": "^10.10.0|^11.0|^12.0",
+ "illuminate/notifications": "^10.10.0|^11.0|^12.0",
+ "illuminate/support": "^10.10.0|^11.0|^12.0",
"league/flysystem": "^3.0",
- "php": "^8.1",
- "spatie/db-dumper": "^3.0",
+ "php": "^8.2",
+ "spatie/db-dumper": "^3.8",
"spatie/laravel-package-tools": "^1.6.2",
"spatie/laravel-signal-aware-command": "^1.2|^2.0",
"spatie/temporary-directory": "^2.0",
@@ -7092,15 +7155,16 @@
"require-dev": {
"composer-runtime-api": "^2.0",
"ext-pcntl": "*",
- "larastan/larastan": "^2.7.0",
+ "larastan/larastan": "^2.7.0|^3.0",
"laravel/slack-notification-channel": "^2.5|^3.0",
"league/flysystem-aws-s3-v3": "^2.0|^3.0",
"mockery/mockery": "^1.4",
- "orchestra/testbench": "^8.0|^9.0",
- "pestphp/pest": "^1.20|^2.0",
+ "orchestra/testbench": "^8.0|^9.0|^10.0",
+ "pestphp/pest": "^1.20|^2.0|^3.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 +7207,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.3.3"
},
"funding": [
{
@@ -7155,27 +7219,27 @@
"type": "other"
}
],
- "time": "2024-08-07T11:07:52+00:00"
+ "time": "2025-05-20T15:01:22+00:00"
},
{
"name": "spatie/laravel-ignition",
- "version": "2.9.0",
+ "version": "2.9.1",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-ignition.git",
- "reference": "62042df15314b829d0f26e02108f559018e2aad0"
+ "reference": "1baee07216d6748ebd3a65ba97381b051838707a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/62042df15314b829d0f26e02108f559018e2aad0",
- "reference": "62042df15314b829d0f26e02108f559018e2aad0",
+ "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1baee07216d6748ebd3a65ba97381b051838707a",
+ "reference": "1baee07216d6748ebd3a65ba97381b051838707a",
"shasum": ""
},
"require": {
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
- "illuminate/support": "^10.0|^11.0",
+ "illuminate/support": "^10.0|^11.0|^12.0",
"php": "^8.1",
"spatie/ignition": "^1.15",
"symfony/console": "^6.2.3|^7.0",
@@ -7184,12 +7248,12 @@
"require-dev": {
"livewire/livewire": "^2.11|^3.3.5",
"mockery/mockery": "^1.5.1",
- "openai-php/client": "^0.8.1",
- "orchestra/testbench": "8.22.3|^9.0",
- "pestphp/pest": "^2.34",
+ "openai-php/client": "^0.8.1|^0.10",
+ "orchestra/testbench": "8.22.3|^9.0|^10.0",
+ "pestphp/pest": "^2.34|^3.7",
"phpstan/extension-installer": "^1.3.1",
- "phpstan/phpstan-deprecation-rules": "^1.1.1",
- "phpstan/phpstan-phpunit": "^1.3.16",
+ "phpstan/phpstan-deprecation-rules": "^1.1.1|^2.0",
+ "phpstan/phpstan-phpunit": "^1.3.16|^2.0",
"vlucas/phpdotenv": "^5.5"
},
"suggest": {
@@ -7246,20 +7310,20 @@
"type": "github"
}
],
- "time": "2024-12-02T08:43:31+00:00"
+ "time": "2025-02-20T13:13:55+00:00"
},
{
"name": "spatie/laravel-medialibrary",
- "version": "11.11.1",
+ "version": "11.13.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-medialibrary.git",
- "reference": "1c4950237a5f2876102b36ded89a00bb6ea96c09"
+ "reference": "e2324b2f138ec41181089a7dcf28489be93ede53"
},
"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/e2324b2f138ec41181089a7dcf28489be93ede53",
+ "reference": "e2324b2f138ec41181089a7dcf28489be93ede53",
"shasum": ""
},
"require": {
@@ -7267,12 +7331,12 @@
"ext-exif": "*",
"ext-fileinfo": "*",
"ext-json": "*",
- "illuminate/bus": "^10.0|^11.0",
- "illuminate/conditionable": "^10.0|^11.0",
- "illuminate/console": "^10.0|^11.0",
- "illuminate/database": "^10.0|^11.0",
- "illuminate/pipeline": "^10.0|^11.0",
- "illuminate/support": "^10.0|^11.0",
+ "illuminate/bus": "^10.2|^11.0|^12.0",
+ "illuminate/conditionable": "^10.2|^11.0|^12.0",
+ "illuminate/console": "^10.2|^11.0|^12.0",
+ "illuminate/database": "^10.2|^11.0|^12.0",
+ "illuminate/pipeline": "^10.2|^11.0|^12.0",
+ "illuminate/support": "^10.2|^11.0|^12.0",
"maennchen/zipstream-php": "^3.1",
"php": "^8.2",
"spatie/image": "^3.3.2",
@@ -7289,11 +7353,11 @@
"ext-pdo_sqlite": "*",
"ext-zip": "*",
"guzzlehttp/guzzle": "^7.8.1",
- "larastan/larastan": "^2.7",
+ "larastan/larastan": "^2.7|^3.0",
"league/flysystem-aws-s3-v3": "^3.22",
"mockery/mockery": "^1.6.7",
- "orchestra/testbench": "^7.0|^8.17|^9.0",
- "pestphp/pest": "^2.28",
+ "orchestra/testbench": "^7.0|^8.17|^9.0|^10.0",
+ "pestphp/pest": "^2.28|^3.5",
"phpstan/extension-installer": "^1.3.1",
"spatie/laravel-ray": "^1.33",
"spatie/pdf-to-image": "^2.2|^3.0",
@@ -7343,7 +7407,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.13.0"
},
"funding": [
{
@@ -7355,31 +7419,32 @@
"type": "github"
}
],
- "time": "2024-12-30T10:16:02+00:00"
+ "time": "2025-05-22T12:25:27+00:00"
},
{
"name": "spatie/laravel-package-tools",
- "version": "1.18.0",
+ "version": "1.92.4",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-package-tools.git",
- "reference": "8332205b90d17164913244f4a8e13ab7e6761d29"
+ "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c"
},
"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/d20b1969f836d210459b78683d85c9cd5c5f508c",
+ "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c",
"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/php-code-coverage": "^9.0|^10.0|^11.0",
+ "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
"spatie/pest-plugin-test-time": "^1.1|^2.2"
},
"type": "library",
@@ -7407,7 +7472,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.92.4"
},
"funding": [
{
@@ -7415,34 +7480,34 @@
"type": "github"
}
],
- "time": "2024-12-30T13:13:39+00:00"
+ "time": "2025-04-11T15:27:14+00:00"
},
{
"name": "spatie/laravel-permission",
- "version": "6.10.1",
+ "version": "6.20.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-permission.git",
- "reference": "8bb69d6d67387f7a00d93a2f5fab98860f06e704"
+ "reference": "31c05679102c73f3b0d05790d2400182745a5615"
},
"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/31c05679102c73f3b0d05790d2400182745a5615",
+ "reference": "31c05679102c73f3b0d05790d2400182745a5615",
"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 +7555,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.20.0"
},
"funding": [
{
@@ -7498,24 +7563,24 @@
"type": "github"
}
],
- "time": "2024-11-08T18:45:41+00:00"
+ "time": "2025-06-05T07:33:07+00:00"
},
{
"name": "spatie/laravel-signal-aware-command",
- "version": "2.0.0",
+ "version": "2.1.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-signal-aware-command.git",
- "reference": "49a5e671c3a3fd992187a777d01385fc6a84759d"
+ "reference": "8e8a226ed7fb45302294878ef339e75ffa9a878d"
},
"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/8e8a226ed7fb45302294878ef339e75ffa9a878d",
+ "reference": "8e8a226ed7fb45302294878ef339e75ffa9a878d",
"shasum": ""
},
"require": {
- "illuminate/contracts": "^11.0",
+ "illuminate/contracts": "^11.0|^12.0",
"php": "^8.2",
"spatie/laravel-package-tools": "^1.4.3",
"symfony/console": "^7.0"
@@ -7524,8 +7589,8 @@
"brianium/paratest": "^6.2|^7.0",
"ext-pcntl": "*",
"nunomaduro/collision": "^5.3|^6.0|^7.0|^8.0",
- "orchestra/testbench": "^9.0",
- "pestphp/pest-plugin-laravel": "^1.3|^2.0",
+ "orchestra/testbench": "^9.0|^10.0",
+ "pestphp/pest-plugin-laravel": "^1.3|^2.0|^3.0",
"phpunit/phpunit": "^9.5|^10|^11",
"spatie/laravel-ray": "^1.17"
},
@@ -7565,7 +7630,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.1.0"
},
"funding": [
{
@@ -7573,33 +7638,33 @@
"type": "github"
}
],
- "time": "2024-02-05T13:37:25+00:00"
+ "time": "2025-02-14T09:55:51+00:00"
},
{
"name": "spatie/laravel-translatable",
- "version": "6.9.3",
+ "version": "6.11.4",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-translatable.git",
- "reference": "5f0712701a71054ba9bd6693808c4748f1f4ebda"
+ "reference": "032d85b28de315310dab2048b857016f1194f68b"
},
"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/032d85b28de315310dab2048b857016f1194f68b",
+ "reference": "032d85b28de315310dab2048b857016f1194f68b",
"shasum": ""
},
"require": {
- "illuminate/database": "^9.0|^10.0|^11.0",
- "illuminate/support": "^9.0|^10.0|^11.0",
+ "illuminate/database": "^10.0|^11.0|^12.0",
+ "illuminate/support": "^10.0|^11.0|^12.0",
"php": "^8.0",
"spatie/laravel-package-tools": "^1.11"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"mockery/mockery": "^1.4",
- "orchestra/testbench": "^7.0|^8.0|^9.0",
- "pestphp/pest": "^1.20|^2.0"
+ "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
+ "pestphp/pest": "^1.20|^2.0|^3.0"
},
"type": "library",
"extra": {
@@ -7648,7 +7713,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.11.4"
},
"funding": [
{
@@ -7656,29 +7721,31 @@
"type": "github"
}
],
- "time": "2024-12-16T12:58:20+00:00"
+ "time": "2025-02-20T15:51:22+00:00"
},
{
"name": "spatie/laravel-translation-loader",
- "version": "2.8.1",
+ "version": "2.8.2",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-translation-loader.git",
- "reference": "c946d94915bd86167d61cb05823fec991eb51a08"
+ "reference": "2a502e69aa681540bb7266397a846db466e48b66"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-translation-loader/zipball/c946d94915bd86167d61cb05823fec991eb51a08",
- "reference": "c946d94915bd86167d61cb05823fec991eb51a08",
+ "url": "https://api.github.com/repos/spatie/laravel-translation-loader/zipball/2a502e69aa681540bb7266397a846db466e48b66",
+ "reference": "2a502e69aa681540bb7266397a846db466e48b66",
"shasum": ""
},
"require": {
- "illuminate/translation": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
- "php": "^7.2|^8.0"
+ "illuminate/translation": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
+ "php": "^8.0",
+ "spatie/laravel-package-tools": "^1.12"
},
"require-dev": {
- "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
- "phpunit/phpunit": "^8.0|^9.0|^10.5"
+ "friendsofphp/php-cs-fixer": "^3.59",
+ "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
+ "pestphp/pest": "^1.23|^2.0|^3.7"
},
"type": "library",
"extra": {
@@ -7718,7 +7785,7 @@
"translate"
],
"support": {
- "source": "https://github.com/spatie/laravel-translation-loader/tree/2.8.1"
+ "source": "https://github.com/spatie/laravel-translation-loader/tree/2.8.2"
},
"funding": [
{
@@ -7726,20 +7793,20 @@
"type": "custom"
}
],
- "time": "2024-12-09T15:07:24+00:00"
+ "time": "2025-02-21T11:45:43+00:00"
},
{
"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 +7842,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 +7854,7 @@
"type": "github"
}
],
- "time": "2023-12-25T11:46:58+00:00"
+ "time": "2025-01-13T13:04:43+00:00"
},
{
"name": "studio-42/elfinder",
@@ -7859,7 +7926,7 @@
},
{
"name": "symfony/clock",
- "version": "v7.2.0",
+ "version": "v7.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/clock.git",
@@ -7913,7 +7980,7 @@
"time"
],
"support": {
- "source": "https://github.com/symfony/clock/tree/v7.2.0"
+ "source": "https://github.com/symfony/clock/tree/v7.3.0"
},
"funding": [
{
@@ -7933,23 +8000,24 @@
},
{
"name": "symfony/console",
- "version": "v7.2.1",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3"
+ "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
- "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
+ "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101",
+ "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101",
"shasum": ""
},
"require": {
"php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3",
"symfony/polyfill-mbstring": "~1.0",
"symfony/service-contracts": "^2.5|^3",
- "symfony/string": "^6.4|^7.0"
+ "symfony/string": "^7.2"
},
"conflict": {
"symfony/dependency-injection": "<6.4",
@@ -8006,7 +8074,7 @@
"terminal"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v7.2.1"
+ "source": "https://github.com/symfony/console/tree/v7.3.1"
},
"funding": [
{
@@ -8022,11 +8090,11 @@
"type": "tidelift"
}
],
- "time": "2024-12-11T03:49:26+00:00"
+ "time": "2025-06-27T19:55:54+00:00"
},
{
"name": "symfony/css-selector",
- "version": "v7.2.0",
+ "version": "v7.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
@@ -8071,7 +8139,7 @@
"description": "Converts CSS selectors to XPath expressions",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
+ "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
},
"funding": [
{
@@ -8091,16 +8159,16 @@
},
{
"name": "symfony/deprecation-contracts",
- "version": "v3.5.1",
+ "version": "v3.6.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
+ "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
- "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
+ "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
"shasum": ""
},
"require": {
@@ -8113,7 +8181,7 @@
"name": "symfony/contracts"
},
"branch-alias": {
- "dev-main": "3.5-dev"
+ "dev-main": "3.6-dev"
}
},
"autoload": {
@@ -8138,7 +8206,7 @@
"description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
},
"funding": [
{
@@ -8154,20 +8222,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-25T14:20:29+00:00"
+ "time": "2024-09-25T14:21:43+00:00"
},
{
"name": "symfony/error-handler",
- "version": "v7.2.1",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
- "reference": "6150b89186573046167796fa5f3f76601d5145f8"
+ "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235"
},
"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/35b55b166f6752d6aaf21aa042fc5ed280fce235",
+ "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235",
"shasum": ""
},
"require": {
@@ -8180,9 +8248,11 @@
"symfony/http-kernel": "<6.4"
},
"require-dev": {
+ "symfony/console": "^6.4|^7.0",
"symfony/deprecation-contracts": "^2.5|^3",
"symfony/http-kernel": "^6.4|^7.0",
- "symfony/serializer": "^6.4|^7.0"
+ "symfony/serializer": "^6.4|^7.0",
+ "symfony/webpack-encore-bundle": "^1.0|^2.0"
},
"bin": [
"Resources/bin/patch-type-declarations"
@@ -8213,7 +8283,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.3.1"
},
"funding": [
{
@@ -8229,20 +8299,20 @@
"type": "tidelift"
}
],
- "time": "2024-12-07T08:50:44+00:00"
+ "time": "2025-06-13T07:48:40+00:00"
},
{
"name": "symfony/event-dispatcher",
- "version": "v7.2.0",
+ "version": "v7.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
+ "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
- "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
+ "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
"shasum": ""
},
"require": {
@@ -8293,7 +8363,7 @@
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
+ "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
},
"funding": [
{
@@ -8309,20 +8379,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-25T14:21:43+00:00"
+ "time": "2025-04-22T09:11:45+00:00"
},
{
"name": "symfony/event-dispatcher-contracts",
- "version": "v3.5.1",
+ "version": "v3.6.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher-contracts.git",
- "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
+ "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
- "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
+ "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
"shasum": ""
},
"require": {
@@ -8336,7 +8406,7 @@
"name": "symfony/contracts"
},
"branch-alias": {
- "dev-main": "3.5-dev"
+ "dev-main": "3.6-dev"
}
},
"autoload": {
@@ -8369,7 +8439,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
},
"funding": [
{
@@ -8385,20 +8455,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-25T14:20:29+00:00"
+ "time": "2024-09-25T14:21:43+00:00"
},
{
"name": "symfony/finder",
- "version": "v7.2.2",
+ "version": "v7.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
+ "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
- "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
+ "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
"shasum": ""
},
"require": {
@@ -8433,7 +8503,7 @@
"description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/finder/tree/v7.2.2"
+ "source": "https://github.com/symfony/finder/tree/v7.3.0"
},
"funding": [
{
@@ -8449,20 +8519,20 @@
"type": "tidelift"
}
],
- "time": "2024-12-30T19:00:17+00:00"
+ "time": "2024-12-30T19:00:26+00:00"
},
{
"name": "symfony/http-foundation",
- "version": "v7.2.2",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "62d1a43796ca3fea3f83a8470dfe63a4af3bc588"
+ "reference": "23dd60256610c86a3414575b70c596e5deff6ed9"
},
"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/23dd60256610c86a3414575b70c596e5deff6ed9",
+ "reference": "23dd60256610c86a3414575b70c596e5deff6ed9",
"shasum": ""
},
"require": {
@@ -8479,6 +8549,7 @@
"doctrine/dbal": "^3.6|^4",
"predis/predis": "^1.1|^2.0",
"symfony/cache": "^6.4.12|^7.1.5",
+ "symfony/clock": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/expression-language": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
@@ -8511,7 +8582,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.3.1"
},
"funding": [
{
@@ -8527,20 +8598,20 @@
"type": "tidelift"
}
],
- "time": "2024-12-30T19:00:17+00:00"
+ "time": "2025-06-23T15:07:14+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v7.2.2",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "3c432966bd8c7ec7429663105f5a02d7e75b4306"
+ "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
},
"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/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
+ "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
"shasum": ""
},
"require": {
@@ -8548,8 +8619,8 @@
"psr/log": "^1|^2|^3",
"symfony/deprecation-contracts": "^2.5|^3",
"symfony/error-handler": "^6.4|^7.0",
- "symfony/event-dispatcher": "^6.4|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/event-dispatcher": "^7.3",
+ "symfony/http-foundation": "^7.3",
"symfony/polyfill-ctype": "^1.8"
},
"conflict": {
@@ -8625,7 +8696,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.3.1"
},
"funding": [
{
@@ -8641,20 +8712,20 @@
"type": "tidelift"
}
],
- "time": "2024-12-31T14:59:40+00:00"
+ "time": "2025-06-28T08:24:55+00:00"
},
{
"name": "symfony/mailer",
- "version": "v7.2.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailer.git",
- "reference": "e4d358702fb66e4c8a2af08e90e7271a62de39cc"
+ "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailer/zipball/e4d358702fb66e4c8a2af08e90e7271a62de39cc",
- "reference": "e4d358702fb66e4c8a2af08e90e7271a62de39cc",
+ "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368",
+ "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368",
"shasum": ""
},
"require": {
@@ -8705,7 +8776,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.3.1"
},
"funding": [
{
@@ -8721,20 +8792,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-25T15:21:05+00:00"
+ "time": "2025-06-27T19:55:54+00:00"
},
{
"name": "symfony/mime",
- "version": "v7.2.1",
+ "version": "v7.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/mime.git",
- "reference": "7f9617fcf15cb61be30f8b252695ed5e2bfac283"
+ "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mime/zipball/7f9617fcf15cb61be30f8b252695ed5e2bfac283",
- "reference": "7f9617fcf15cb61be30f8b252695ed5e2bfac283",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
+ "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
"shasum": ""
},
"require": {
@@ -8789,7 +8860,7 @@
"mime-type"
],
"support": {
- "source": "https://github.com/symfony/mime/tree/v7.2.1"
+ "source": "https://github.com/symfony/mime/tree/v7.3.0"
},
"funding": [
{
@@ -8805,11 +8876,11 @@
"type": "tidelift"
}
],
- "time": "2024-12-07T08:50:44+00:00"
+ "time": "2025-02-19T08:51:26+00:00"
},
{
"name": "symfony/polyfill-ctype",
- "version": "v1.31.0",
+ "version": "v1.32.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
@@ -8868,7 +8939,7 @@
"portable"
],
"support": {
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
},
"funding": [
{
@@ -8888,7 +8959,7 @@
},
{
"name": "symfony/polyfill-intl-grapheme",
- "version": "v1.31.0",
+ "version": "v1.32.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
@@ -8946,7 +9017,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
},
"funding": [
{
@@ -8966,16 +9037,16 @@
},
{
"name": "symfony/polyfill-intl-idn",
- "version": "v1.31.0",
+ "version": "v1.32.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-idn.git",
- "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
+ "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
- "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
+ "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
"shasum": ""
},
"require": {
@@ -9029,7 +9100,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
},
"funding": [
{
@@ -9045,11 +9116,11 @@
"type": "tidelift"
}
],
- "time": "2024-09-09T11:45:10+00:00"
+ "time": "2024-09-10T14:38:51+00:00"
},
{
"name": "symfony/polyfill-intl-normalizer",
- "version": "v1.31.0",
+ "version": "v1.32.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
@@ -9110,7 +9181,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
},
"funding": [
{
@@ -9130,19 +9201,20 @@
},
{
"name": "symfony/polyfill-mbstring",
- "version": "v1.31.0",
+ "version": "v1.32.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
+ "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
- "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
+ "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
"shasum": ""
},
"require": {
+ "ext-iconv": "*",
"php": ">=7.2"
},
"provide": {
@@ -9190,7 +9262,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
},
"funding": [
{
@@ -9206,20 +9278,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-09T11:45:10+00:00"
+ "time": "2024-12-23T08:48:59+00:00"
},
{
"name": "symfony/polyfill-php80",
- "version": "v1.31.0",
+ "version": "v1.32.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
+ "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
- "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
+ "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
"shasum": ""
},
"require": {
@@ -9270,7 +9342,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
},
"funding": [
{
@@ -9286,11 +9358,11 @@
"type": "tidelift"
}
],
- "time": "2024-09-09T11:45:10+00:00"
+ "time": "2025-01-02T08:10:11+00:00"
},
{
"name": "symfony/polyfill-php83",
- "version": "v1.31.0",
+ "version": "v1.32.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php83.git",
@@ -9346,7 +9418,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
+ "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
},
"funding": [
{
@@ -9366,7 +9438,7 @@
},
{
"name": "symfony/polyfill-uuid",
- "version": "v1.31.0",
+ "version": "v1.32.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-uuid.git",
@@ -9425,7 +9497,7 @@
"uuid"
],
"support": {
- "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
+ "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
},
"funding": [
{
@@ -9445,16 +9517,16 @@
},
{
"name": "symfony/process",
- "version": "v7.2.0",
+ "version": "v7.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/process.git",
- "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e"
+ "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
- "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
+ "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
+ "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
"shasum": ""
},
"require": {
@@ -9486,7 +9558,7 @@
"description": "Executes commands in sub-processes",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/process/tree/v7.2.0"
+ "source": "https://github.com/symfony/process/tree/v7.3.0"
},
"funding": [
{
@@ -9502,20 +9574,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-06T14:24:19+00:00"
+ "time": "2025-04-17T09:11:12+00:00"
},
{
"name": "symfony/routing",
- "version": "v7.2.0",
+ "version": "v7.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
- "reference": "e10a2450fa957af6c448b9b93c9010a4e4c0725e"
+ "reference": "8e213820c5fea844ecea29203d2a308019007c15"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/e10a2450fa957af6c448b9b93c9010a4e4c0725e",
- "reference": "e10a2450fa957af6c448b9b93c9010a4e4c0725e",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
+ "reference": "8e213820c5fea844ecea29203d2a308019007c15",
"shasum": ""
},
"require": {
@@ -9567,7 +9639,7 @@
"url"
],
"support": {
- "source": "https://github.com/symfony/routing/tree/v7.2.0"
+ "source": "https://github.com/symfony/routing/tree/v7.3.0"
},
"funding": [
{
@@ -9583,20 +9655,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-25T11:08:51+00:00"
+ "time": "2025-05-24T20:43:28+00:00"
},
{
"name": "symfony/service-contracts",
- "version": "v3.5.1",
+ "version": "v3.6.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/service-contracts.git",
- "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
+ "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
- "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
+ "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
"shasum": ""
},
"require": {
@@ -9614,7 +9686,7 @@
"name": "symfony/contracts"
},
"branch-alias": {
- "dev-main": "3.5-dev"
+ "dev-main": "3.6-dev"
}
},
"autoload": {
@@ -9650,7 +9722,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
+ "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
},
"funding": [
{
@@ -9666,20 +9738,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-25T14:20:29+00:00"
+ "time": "2025-04-25T09:37:31+00:00"
},
{
"name": "symfony/string",
- "version": "v7.2.0",
+ "version": "v7.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
- "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82"
+ "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82",
- "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82",
+ "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
+ "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
"shasum": ""
},
"require": {
@@ -9737,7 +9809,7 @@
"utf8"
],
"support": {
- "source": "https://github.com/symfony/string/tree/v7.2.0"
+ "source": "https://github.com/symfony/string/tree/v7.3.0"
},
"funding": [
{
@@ -9753,20 +9825,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-13T13:31:26+00:00"
+ "time": "2025-04-20T20:19:01+00:00"
},
{
"name": "symfony/translation",
- "version": "v7.2.2",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
- "reference": "e2674a30132b7cc4d74540d6c2573aa363f05923"
+ "reference": "241d5ac4910d256660238a7ecf250deba4c73063"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/e2674a30132b7cc4d74540d6c2573aa363f05923",
- "reference": "e2674a30132b7cc4d74540d6c2573aa363f05923",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063",
+ "reference": "241d5ac4910d256660238a7ecf250deba4c73063",
"shasum": ""
},
"require": {
@@ -9776,6 +9848,7 @@
"symfony/translation-contracts": "^2.5|^3.0"
},
"conflict": {
+ "nikic/php-parser": "<5.0",
"symfony/config": "<6.4",
"symfony/console": "<6.4",
"symfony/dependency-injection": "<6.4",
@@ -9789,7 +9862,7 @@
"symfony/translation-implementation": "2.3|3.0"
},
"require-dev": {
- "nikic/php-parser": "^4.18|^5.0",
+ "nikic/php-parser": "^5.0",
"psr/log": "^1|^2|^3",
"symfony/config": "^6.4|^7.0",
"symfony/console": "^6.4|^7.0",
@@ -9832,7 +9905,7 @@
"description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/translation/tree/v7.2.2"
+ "source": "https://github.com/symfony/translation/tree/v7.3.1"
},
"funding": [
{
@@ -9848,20 +9921,20 @@
"type": "tidelift"
}
],
- "time": "2024-12-07T08:18:10+00:00"
+ "time": "2025-06-27T19:55:54+00:00"
},
{
"name": "symfony/translation-contracts",
- "version": "v3.5.1",
+ "version": "v3.6.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation-contracts.git",
- "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
+ "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
- "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
+ "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
"shasum": ""
},
"require": {
@@ -9874,7 +9947,7 @@
"name": "symfony/contracts"
},
"branch-alias": {
- "dev-main": "3.5-dev"
+ "dev-main": "3.6-dev"
}
},
"autoload": {
@@ -9910,7 +9983,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
+ "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
},
"funding": [
{
@@ -9926,20 +9999,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-25T14:20:29+00:00"
+ "time": "2024-09-27T08:32:26+00:00"
},
{
"name": "symfony/uid",
- "version": "v7.2.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/uid.git",
- "reference": "2d294d0c48df244c71c105a169d0190bfb080426"
+ "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426",
- "reference": "2d294d0c48df244c71c105a169d0190bfb080426",
+ "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
+ "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
"shasum": ""
},
"require": {
@@ -9984,7 +10057,7 @@
"uuid"
],
"support": {
- "source": "https://github.com/symfony/uid/tree/v7.2.0"
+ "source": "https://github.com/symfony/uid/tree/v7.3.1"
},
"funding": [
{
@@ -10000,24 +10073,25 @@
"type": "tidelift"
}
],
- "time": "2024-09-25T14:21:43+00:00"
+ "time": "2025-06-27T19:55:54+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v7.2.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "c6a22929407dec8765d6e2b6ff85b800b245879c"
+ "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42"
},
"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/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
+ "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
"shasum": ""
},
"require": {
"php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3",
"symfony/polyfill-mbstring": "~1.0"
},
"conflict": {
@@ -10067,7 +10141,7 @@
"dump"
],
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v7.2.0"
+ "source": "https://github.com/symfony/var-dumper/tree/v7.3.1"
},
"funding": [
{
@@ -10083,7 +10157,7 @@
"type": "tidelift"
}
],
- "time": "2024-11-08T15:48:14+00:00"
+ "time": "2025-06-27T19:55:54+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
@@ -10142,25 +10216,25 @@
},
{
"name": "venturecraft/revisionable",
- "version": "1.41.0",
+ "version": "1.42.0",
"source": {
"type": "git",
"url": "https://github.com/VentureCraft/revisionable.git",
- "reference": "f2175b59041de6610d1586db186d0a0a782bd74e"
+ "reference": "8c7bba9a30f9c7435de38b62290a24e3bd896bad"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/VentureCraft/revisionable/zipball/f2175b59041de6610d1586db186d0a0a782bd74e",
- "reference": "f2175b59041de6610d1586db186d0a0a782bd74e",
+ "url": "https://api.github.com/repos/VentureCraft/revisionable/zipball/8c7bba9a30f9c7435de38b62290a24e3bd896bad",
+ "reference": "8c7bba9a30f9c7435de38b62290a24e3bd896bad",
"shasum": ""
},
"require": {
- "illuminate/support": "~4.0|~5.0|~5.1|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
- "laravel/framework": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
+ "illuminate/support": "~4.0|~5.0|~5.1|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
+ "laravel/framework": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"php": ">=5.4.0"
},
"require-dev": {
- "orchestra/testbench": "~3.0|^8.0|^9.0"
+ "orchestra/testbench": "~3.0|^8.0|^9.0|^10.0"
},
"type": "library",
"extra": {
@@ -10202,20 +10276,20 @@
"issues": "https://github.com/VentureCraft/revisionable/issues",
"source": "https://github.com/VentureCraft/revisionable"
},
- "time": "2024-03-13T09:43:46+00:00"
+ "time": "2025-02-16T23:55:15+00:00"
},
{
"name": "vlucas/phpdotenv",
- "version": "v5.6.1",
+ "version": "v5.6.2",
"source": {
"type": "git",
"url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
+ "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
- "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
+ "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
"shasum": ""
},
"require": {
@@ -10274,7 +10348,7 @@
],
"support": {
"issues": "https://github.com/vlucas/phpdotenv/issues",
- "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
+ "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
},
"funding": [
{
@@ -10286,7 +10360,7 @@
"type": "tidelift"
}
],
- "time": "2024-07-20T21:52:34+00:00"
+ "time": "2025-04-30T23:37:27+00:00"
},
{
"name": "voku/portable-ascii",
@@ -10424,20 +10498,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": "6f7cf04d01a87f08639b116d43adbb26fdde1d37"
},
"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/6f7cf04d01a87f08639b116d43adbb26fdde1d37",
+ "reference": "6f7cf04d01a87f08639b116d43adbb26fdde1d37",
"shasum": ""
},
"require": {
- "backpack/crud": "^6.0"
+ "backpack/crud": "^7.0.0-alpha"
},
"type": "library",
"extra": {
@@ -10484,36 +10558,36 @@
],
"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-06-25T10:57:55+00:00"
},
{
"name": "barryvdh/laravel-debugbar",
- "version": "v3.14.10",
+ "version": "v3.15.4",
"source": {
"type": "git",
"url": "https://github.com/barryvdh/laravel-debugbar.git",
- "reference": "56b9bd235e3fe62e250124804009ce5bab97cc63"
+ "reference": "c0667ea91f7185f1e074402c5788195e96bf8106"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/56b9bd235e3fe62e250124804009ce5bab97cc63",
- "reference": "56b9bd235e3fe62e250124804009ce5bab97cc63",
+ "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/c0667ea91f7185f1e074402c5788195e96bf8106",
+ "reference": "c0667ea91f7185f1e074402c5788195e96bf8106",
"shasum": ""
},
"require": {
- "illuminate/routing": "^9|^10|^11",
- "illuminate/session": "^9|^10|^11",
- "illuminate/support": "^9|^10|^11",
- "maximebf/debugbar": "~1.23.0",
- "php": "^8.0",
+ "illuminate/routing": "^9|^10|^11|^12",
+ "illuminate/session": "^9|^10|^11|^12",
+ "illuminate/support": "^9|^10|^11|^12",
+ "php": "^8.1",
+ "php-debugbar/php-debugbar": "~2.1.1",
"symfony/finder": "^6|^7"
},
"require-dev": {
"mockery/mockery": "^1.3.3",
- "orchestra/testbench-dusk": "^5|^6|^7|^8|^9",
- "phpunit/phpunit": "^9.6|^10.5",
+ "orchestra/testbench-dusk": "^7|^8|^9|^10",
+ "phpunit/phpunit": "^9.5.10|^10|^11",
"squizlabs/php_codesniffer": "^3.5"
},
"type": "library",
@@ -10527,7 +10601,7 @@
]
},
"branch-alias": {
- "dev-master": "3.14-dev"
+ "dev-master": "3.15-dev"
}
},
"autoload": {
@@ -10552,13 +10626,14 @@
"keywords": [
"debug",
"debugbar",
+ "dev",
"laravel",
"profiler",
"webprofiler"
],
"support": {
"issues": "https://github.com/barryvdh/laravel-debugbar/issues",
- "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.14.10"
+ "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.15.4"
},
"funding": [
{
@@ -10570,7 +10645,7 @@
"type": "github"
}
],
- "time": "2024-12-23T10:10:42+00:00"
+ "time": "2025-04-16T06:32:06+00:00"
},
{
"name": "fakerphp/faker",
@@ -10637,20 +10712,20 @@
},
{
"name": "hamcrest/hamcrest-php",
- "version": "v2.0.1",
+ "version": "v2.1.1",
"source": {
"type": "git",
"url": "https://github.com/hamcrest/hamcrest-php.git",
- "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
+ "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
- "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
+ "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
+ "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
"shasum": ""
},
"require": {
- "php": "^5.3|^7.0|^8.0"
+ "php": "^7.4|^8.0"
},
"replace": {
"cordoval/hamcrest-php": "*",
@@ -10658,8 +10733,8 @@
"kodova/hamcrest-php": "*"
},
"require-dev": {
- "phpunit/php-file-iterator": "^1.4 || ^2.0",
- "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
+ "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
},
"type": "library",
"extra": {
@@ -10682,9 +10757,9 @@
],
"support": {
"issues": "https://github.com/hamcrest/hamcrest-php/issues",
- "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
+ "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
},
- "time": "2020-07-09T08:09:16+00:00"
+ "time": "2025-04-30T06:54:44+00:00"
},
{
"name": "masterminds/html5",
@@ -10753,74 +10828,6 @@
},
"time": "2024-03-31T07:05:07+00:00"
},
- {
- "name": "maximebf/debugbar",
- "version": "v1.23.5",
- "source": {
- "type": "git",
- "url": "https://github.com/php-debugbar/php-debugbar.git",
- "reference": "eeabd61a1f19ba5dcd5ac4585a477130ee03ce25"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/eeabd61a1f19ba5dcd5ac4585a477130ee03ce25",
- "reference": "eeabd61a1f19ba5dcd5ac4585a477130ee03ce25",
- "shasum": ""
- },
- "require": {
- "php": "^7.2|^8",
- "psr/log": "^1|^2|^3",
- "symfony/var-dumper": "^4|^5|^6|^7"
- },
- "require-dev": {
- "dbrekelmans/bdi": "^1",
- "phpunit/phpunit": "^8|^9",
- "symfony/panther": "^1|^2.1",
- "twig/twig": "^1.38|^2.7|^3.0"
- },
- "suggest": {
- "kriswallsmith/assetic": "The best way to manage assets",
- "monolog/monolog": "Log using Monolog",
- "predis/predis": "Redis storage"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.23-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "DebugBar\\": "src/DebugBar/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Maxime Bouroumeau-Fuseau",
- "email": "maxime.bouroumeau@gmail.com",
- "homepage": "http://maximebf.com"
- },
- {
- "name": "Barry vd. Heuvel",
- "email": "barryvdh@gmail.com"
- }
- ],
- "description": "Debug bar in the browser for php application",
- "homepage": "https://github.com/maximebf/php-debugbar",
- "keywords": [
- "debug",
- "debugbar"
- ],
- "support": {
- "issues": "https://github.com/php-debugbar/php-debugbar/issues",
- "source": "https://github.com/php-debugbar/php-debugbar/tree/v1.23.5"
- },
- "time": "2024-12-15T19:20:42+00:00"
- },
{
"name": "mockery/mockery",
"version": "1.6.12",
@@ -10906,16 +10913,16 @@
},
{
"name": "myclabs/deep-copy",
- "version": "1.12.1",
+ "version": "1.13.1",
"source": {
"type": "git",
"url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
+ "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
- "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c",
+ "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c",
"shasum": ""
},
"require": {
@@ -10954,7 +10961,7 @@
],
"support": {
"issues": "https://github.com/myclabs/DeepCopy/issues",
- "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1"
},
"funding": [
{
@@ -10962,7 +10969,7 @@
"type": "tidelift"
}
],
- "time": "2024-11-08T17:47:46+00:00"
+ "time": "2025-04-29T12:36:36+00:00"
},
{
"name": "phar-io/manifest",
@@ -11082,25 +11089,95 @@
},
"time": "2022-02-21T01:04:05+00:00"
},
+ {
+ "name": "php-debugbar/php-debugbar",
+ "version": "v2.1.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-debugbar/php-debugbar.git",
+ "reference": "16fa68da5617220594aa5e33fa9de415f94784a0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/16fa68da5617220594aa5e33fa9de415f94784a0",
+ "reference": "16fa68da5617220594aa5e33fa9de415f94784a0",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8",
+ "psr/log": "^1|^2|^3",
+ "symfony/var-dumper": "^4|^5|^6|^7"
+ },
+ "require-dev": {
+ "dbrekelmans/bdi": "^1",
+ "phpunit/phpunit": "^8|^9",
+ "symfony/panther": "^1|^2.1",
+ "twig/twig": "^1.38|^2.7|^3.0"
+ },
+ "suggest": {
+ "kriswallsmith/assetic": "The best way to manage assets",
+ "monolog/monolog": "Log using Monolog",
+ "predis/predis": "Redis storage"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "DebugBar\\": "src/DebugBar/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Maxime Bouroumeau-Fuseau",
+ "email": "maxime.bouroumeau@gmail.com",
+ "homepage": "http://maximebf.com"
+ },
+ {
+ "name": "Barry vd. Heuvel",
+ "email": "barryvdh@gmail.com"
+ }
+ ],
+ "description": "Debug bar in the browser for php application",
+ "homepage": "https://github.com/php-debugbar/php-debugbar",
+ "keywords": [
+ "debug",
+ "debug bar",
+ "debugbar",
+ "dev"
+ ],
+ "support": {
+ "issues": "https://github.com/php-debugbar/php-debugbar/issues",
+ "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.1.6"
+ },
+ "time": "2025-02-21T17:47:03+00:00"
+ },
{
"name": "phpunit/php-code-coverage",
- "version": "11.0.8",
+ "version": "11.0.10",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "418c59fd080954f8c4aa5631d9502ecda2387118"
+ "reference": "1a800a7446add2d79cc6b3c01c45381810367d76"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/418c59fd080954f8c4aa5631d9502ecda2387118",
- "reference": "418c59fd080954f8c4aa5631d9502ecda2387118",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/1a800a7446add2d79cc6b3c01c45381810367d76",
+ "reference": "1a800a7446add2d79cc6b3c01c45381810367d76",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"ext-xmlwriter": "*",
- "nikic/php-parser": "^5.3.1",
+ "nikic/php-parser": "^5.4.0",
"php": ">=8.2",
"phpunit/php-file-iterator": "^5.1.0",
"phpunit/php-text-template": "^4.0.1",
@@ -11112,7 +11189,7 @@
"theseer/tokenizer": "^1.2.3"
},
"require-dev": {
- "phpunit/phpunit": "^11.5.0"
+ "phpunit/phpunit": "^11.5.2"
},
"suggest": {
"ext-pcov": "PHP extension that provides line coverage",
@@ -11150,15 +11227,27 @@
"support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
"security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.8"
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/show"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
+ "type": "tidelift"
}
],
- "time": "2024-12-11T12:34:27+00:00"
+ "time": "2025-06-18T08:56:18+00:00"
},
{
"name": "phpunit/php-file-iterator",
@@ -11407,16 +11496,16 @@
},
{
"name": "phpunit/phpunit",
- "version": "11.5.2",
+ "version": "11.5.25",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "153d0531b9f7e883c5053160cad6dd5ac28140b3"
+ "reference": "864ab32b3ff52058f917c5b19b3cef821e4a4f1b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/153d0531b9f7e883c5053160cad6dd5ac28140b3",
- "reference": "153d0531b9f7e883c5053160cad6dd5ac28140b3",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/864ab32b3ff52058f917c5b19b3cef821e4a4f1b",
+ "reference": "864ab32b3ff52058f917c5b19b3cef821e4a4f1b",
"shasum": ""
},
"require": {
@@ -11426,24 +11515,24 @@
"ext-mbstring": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
- "myclabs/deep-copy": "^1.12.1",
+ "myclabs/deep-copy": "^1.13.1",
"phar-io/manifest": "^2.0.4",
"phar-io/version": "^3.2.1",
"php": ">=8.2",
- "phpunit/php-code-coverage": "^11.0.8",
+ "phpunit/php-code-coverage": "^11.0.10",
"phpunit/php-file-iterator": "^5.1.0",
"phpunit/php-invoker": "^5.0.1",
"phpunit/php-text-template": "^4.0.1",
"phpunit/php-timer": "^7.0.1",
"sebastian/cli-parser": "^3.0.2",
- "sebastian/code-unit": "^3.0.2",
- "sebastian/comparator": "^6.2.1",
+ "sebastian/code-unit": "^3.0.3",
+ "sebastian/comparator": "^6.3.1",
"sebastian/diff": "^6.0.2",
- "sebastian/environment": "^7.2.0",
+ "sebastian/environment": "^7.2.1",
"sebastian/exporter": "^6.3.0",
"sebastian/global-state": "^7.0.2",
"sebastian/object-enumerator": "^6.0.1",
- "sebastian/type": "^5.1.0",
+ "sebastian/type": "^5.1.2",
"sebastian/version": "^5.0.2",
"staabm/side-effects-detector": "^1.0.5"
},
@@ -11488,7 +11577,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.25"
},
"funding": [
{
@@ -11499,12 +11588,20 @@
"url": "https://github.com/sebastianbergmann",
"type": "github"
},
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
{
"url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
"type": "tidelift"
}
],
- "time": "2024-12-21T05:51:08+00:00"
+ "time": "2025-06-27T04:36:07+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -11565,16 +11662,16 @@
},
{
"name": "sebastian/code-unit",
- "version": "3.0.2",
+ "version": "3.0.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/code-unit.git",
- "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca"
+ "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
- "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
+ "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
"shasum": ""
},
"require": {
@@ -11610,7 +11707,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/code-unit/issues",
"security": "https://github.com/sebastianbergmann/code-unit/security/policy",
- "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.2"
+ "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
},
"funding": [
{
@@ -11618,7 +11715,7 @@
"type": "github"
}
],
- "time": "2024-12-12T09:59:06+00:00"
+ "time": "2025-03-19T07:56:08+00:00"
},
{
"name": "sebastian/code-unit-reverse-lookup",
@@ -11678,16 +11775,16 @@
},
{
"name": "sebastian/comparator",
- "version": "6.2.1",
+ "version": "6.3.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739"
+ "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739",
- "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
+ "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
"shasum": ""
},
"require": {
@@ -11700,10 +11797,13 @@
"require-dev": {
"phpunit/phpunit": "^11.4"
},
+ "suggest": {
+ "ext-bcmath": "For comparing BcMath\\Number objects"
+ },
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "6.2-dev"
+ "dev-main": "6.3-dev"
}
},
"autoload": {
@@ -11743,7 +11843,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.1"
},
"funding": [
{
@@ -11751,7 +11851,7 @@
"type": "github"
}
],
- "time": "2024-10-31T05:30:08+00:00"
+ "time": "2025-03-07T06:57:01+00:00"
},
{
"name": "sebastian/complexity",
@@ -11880,23 +11980,23 @@
},
{
"name": "sebastian/environment",
- "version": "7.2.0",
+ "version": "7.2.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
+ "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
- "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
+ "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
"shasum": ""
},
"require": {
"php": ">=8.2"
},
"require-dev": {
- "phpunit/phpunit": "^11.0"
+ "phpunit/phpunit": "^11.3"
},
"suggest": {
"ext-posix": "*"
@@ -11932,15 +12032,27 @@
"support": {
"issues": "https://github.com/sebastianbergmann/environment/issues",
"security": "https://github.com/sebastianbergmann/environment/security/policy",
- "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
+ "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
+ "type": "tidelift"
}
],
- "time": "2024-07-03T04:54:44+00:00"
+ "time": "2025-05-21T11:55:47+00:00"
},
{
"name": "sebastian/exporter",
@@ -12320,16 +12432,16 @@
},
{
"name": "sebastian/type",
- "version": "5.1.0",
+ "version": "5.1.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/type.git",
- "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
+ "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
- "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
+ "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
"shasum": ""
},
"require": {
@@ -12365,7 +12477,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/type/issues",
"security": "https://github.com/sebastianbergmann/type/security/policy",
- "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
+ "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
},
"funding": [
{
@@ -12373,7 +12485,7 @@
"type": "github"
}
],
- "time": "2024-09-17T13:12:04+00:00"
+ "time": "2025-03-18T13:35:50+00:00"
},
{
"name": "sebastian/version",
@@ -12483,16 +12595,16 @@
},
{
"name": "symfony/dom-crawler",
- "version": "v7.2.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/dom-crawler.git",
- "reference": "b176e1f1f550ef44c94eb971bf92488de08f7c6b"
+ "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9"
},
"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/8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
+ "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
"shasum": ""
},
"require": {
@@ -12530,7 +12642,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.3.1"
},
"funding": [
{
@@ -12546,7 +12658,7 @@
"type": "tidelift"
}
],
- "time": "2024-11-13T16:15:23+00:00"
+ "time": "2025-06-15T10:07:06+00:00"
},
{
"name": "theseer/tokenizer",
@@ -12599,9 +12711,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/public/screenshots/login_teaser.jpg b/public/screenshots/login_teaser.jpg
new file mode 100644
index 00000000..756a648a
Binary files /dev/null and b/public/screenshots/login_teaser.jpg differ
diff --git a/public/screenshots/tabler_horizontal_dark_layout.jpg b/public/screenshots/tabler_horizontal_dark_layout.jpg
new file mode 100644
index 00000000..338b6cda
Binary files /dev/null and b/public/screenshots/tabler_horizontal_dark_layout.jpg differ
diff --git a/public/screenshots/tabler_horizontal_layout.jpg b/public/screenshots/tabler_horizontal_layout.jpg
new file mode 100644
index 00000000..cc1e53b7
Binary files /dev/null and b/public/screenshots/tabler_horizontal_layout.jpg differ
diff --git a/public/screenshots/tabler_horizontal_overlap_layout.jpg b/public/screenshots/tabler_horizontal_overlap_layout.jpg
new file mode 100644
index 00000000..c932ae3b
Binary files /dev/null and b/public/screenshots/tabler_horizontal_overlap_layout.jpg differ
diff --git a/public/screenshots/tabler_right_vertical_dark_layout.jpg b/public/screenshots/tabler_right_vertical_dark_layout.jpg
new file mode 100644
index 00000000..9b1ce203
Binary files /dev/null and b/public/screenshots/tabler_right_vertical_dark_layout.jpg differ
diff --git a/public/screenshots/tabler_right_vertical_layout.jpg b/public/screenshots/tabler_right_vertical_layout.jpg
new file mode 100644
index 00000000..e1420189
Binary files /dev/null and b/public/screenshots/tabler_right_vertical_layout.jpg differ
diff --git a/public/screenshots/tabler_right_vertical_transparent_layout.jpg b/public/screenshots/tabler_right_vertical_transparent_layout.jpg
new file mode 100644
index 00000000..f59464c1
Binary files /dev/null and b/public/screenshots/tabler_right_vertical_transparent_layout.jpg differ
diff --git a/public/screenshots/tabler_vertical_dark_layout.jpg b/public/screenshots/tabler_vertical_dark_layout.jpg
new file mode 100644
index 00000000..759cf2d8
Binary files /dev/null and b/public/screenshots/tabler_vertical_dark_layout.jpg differ
diff --git a/public/screenshots/tabler_vertical_layout.jpg b/public/screenshots/tabler_vertical_layout.jpg
new file mode 100644
index 00000000..24d969cf
Binary files /dev/null and b/public/screenshots/tabler_vertical_layout.jpg differ
diff --git a/public/screenshots/tabler_vertical_transparent_layout.jpg b/public/screenshots/tabler_vertical_transparent_layout.jpg
new file mode 100644
index 00000000..3dcee67d
Binary files /dev/null and b/public/screenshots/tabler_vertical_transparent_layout.jpg differ
diff --git a/public/screenshots/theme-coreuiv2.jpg b/public/screenshots/theme-coreuiv2.jpg
new file mode 100644
index 00000000..6182fc60
Binary files /dev/null and b/public/screenshots/theme-coreuiv2.jpg differ
diff --git a/public/screenshots/theme-coreuiv4.jpg b/public/screenshots/theme-coreuiv4.jpg
new file mode 100644
index 00000000..8e14800a
Binary files /dev/null and b/public/screenshots/theme-coreuiv4.jpg differ
diff --git a/public/screenshots/theme-tabler.jpg b/public/screenshots/theme-tabler.jpg
new file mode 100644
index 00000000..4574d879
Binary files /dev/null and b/public/screenshots/theme-tabler.jpg differ
diff --git a/resources/views/admin/new-in-v7.blade.php b/resources/views/admin/new-in-v7.blade.php
new file mode 100644
index 00000000..22495a82
--- /dev/null
+++ b/resources/views/admin/new-in-v7.blade.php
@@ -0,0 +1,128 @@
+@extends(backpack_view('blank'))
+
+@php
+ // Add the form widget to the 'after_content' section of the widgets array
+ $widgets['after_content'][] = [
+ 'type' => 'div',
+ 'class' => 'row',
+ 'content' => [ // widgets
+ [
+ 'type' => 'dataform',
+ 'wrapper' => [
+ 'class' => 'col-md-12 mt-3',
+ ],
+ 'controller' => \App\Http\Controllers\Admin\PetShop\SkillCrudController::class,
+ 'operation' => 'update',
+ 'entry' => \App\Models\PetShop\Skill::find(1),
+ 'content' => [
+ 'header' => 'Edit Skill', // optional
+ 'body' => 'This form should make it easy to update an existing skill.
', // optional
+ ],
+ ]
+ ]
+ ];
+
+ $widgets['after_content'][] = [
+ 'type' => 'view',
+ 'view' => 'backpack.theme-tabler::inc.commercial',
+ 'wrapper' => [
+ 'class' => 'mt-3',
+ ],
+ ];
+@endphp
+
+@section('content')
+
+
+
Include more information about an Eloquent model, in a small space. Hover over the headings + to understand more about the examples.
+Show the most important info about an Eloquent entry, anywhere you want.
+Show the most important info about an Eloquent entry, anywhere you want.
+Include your complex datatable, anywhere you want.
+Show a form for an Eloquent entry, anywhere you want.
+Works well for people - in this demo, the most obvious example is pet owners:
+But it's particularly useful for entities where the name alone can't identify an entity, eg. Invoice:
+Or entities that can sometimes have duplicated names, like Products:
+If you find any problems, let us know in a discussion on Github.
+Try out the themes Backpack offers you out of the box...!
+Choose from the available Backpack themes:
@csrf -