From 118862fd4140626852b6e4f1480707e925e3512c Mon Sep 17 00:00:00 2001 From: Ash Monsh Date: Tue, 26 Mar 2024 09:27:05 +0300 Subject: [PATCH 1/3] fix section icon --- src/Concerns/Designer.php | 1 + src/Fields/FieldsContract.php | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Concerns/Designer.php b/src/Concerns/Designer.php index b534ec1b..0b29cb7a 100644 --- a/src/Concerns/Designer.php +++ b/src/Concerns/Designer.php @@ -103,6 +103,7 @@ private static function drawSections(Form $zeusForm, ZeusSection $section, array ->description($section->description) ->aside(fn () => $section->aside) ->compact(fn () => $section->compact) + ->icon($section->icon ?? null) ->collapsible(); if (optional($zeusForm->options)['show-as'] === 'tabs') { diff --git a/src/Fields/FieldsContract.php b/src/Fields/FieldsContract.php index 4eca90b1..340b998b 100644 --- a/src/Fields/FieldsContract.php +++ b/src/Fields/FieldsContract.php @@ -124,15 +124,16 @@ public function appendFilamentComponentsOptions($component, $zeusField, bool $ha return true; } - if (is_array($get('zeusData.' . $relatedField))) { - return in_array($relatedFieldValues, $get('zeusData.' . $relatedField)); + $relatedFieldArray = Arr::wrap($get('zeusData.' . $relatedField)); + if(in_array($relatedFieldValues, $relatedFieldArray)){ + return true; } - return $relatedFieldValues === $get('zeusData.' . $relatedField); + return false; }); if ($hasVisibility) { - return $component->live(onBlur: $hasVisibility); + return $component->live(); } return $component; From 3d00ea0fef6c58f467a070f9e9757cbc33bb7479 Mon Sep 17 00:00:00 2001 From: atmonshi Date: Tue, 26 Mar 2024 06:27:31 +0000 Subject: [PATCH 2/3] Fix styling --- src/Fields/FieldsContract.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fields/FieldsContract.php b/src/Fields/FieldsContract.php index 340b998b..656590ea 100644 --- a/src/Fields/FieldsContract.php +++ b/src/Fields/FieldsContract.php @@ -125,7 +125,7 @@ public function appendFilamentComponentsOptions($component, $zeusField, bool $ha } $relatedFieldArray = Arr::wrap($get('zeusData.' . $relatedField)); - if(in_array($relatedFieldValues, $relatedFieldArray)){ + if (in_array($relatedFieldValues, $relatedFieldArray)) { return true; } From 7e5782883273cd8dc24cf5520803fa8c359223ab Mon Sep 17 00:00:00 2001 From: Ash Monsh Date: Tue, 26 Mar 2024 09:35:03 +0300 Subject: [PATCH 3/3] stan --- .phpunit.cache/test-results | 2 +- composer.lock | 383 ++++++++++---------- database/factories/CategoryFactory.php | 9 +- database/factories/CollectionFactory.php | 9 +- database/factories/FieldFactory.php | 7 +- database/factories/FieldResponseFactory.php | 7 +- database/factories/FormFactory.php | 7 +- database/factories/ResponseFactory.php | 7 +- database/factories/SectionFactory.php | 7 +- database/factories/UserFactory.php | 3 - 10 files changed, 199 insertions(+), 242 deletions(-) diff --git a/.phpunit.cache/test-results b/.phpunit.cache/test-results index 30de7b3d..d70f5c56 100644 --- a/.phpunit.cache/test-results +++ b/.phpunit.cache/test-results @@ -1 +1 @@ -{"version":"pest_2.34.2","defects":[],"times":{"P\\Tests\\FormsTest::__pest_evaluable_it_see_ended_form_date":0.033,"P\\Tests\\FormsTest::__pest_evaluable_it_can_not_edit":0.136,"P\\Tests\\FormsTest::__pest_evaluable_it_can_list_Form":0.007,"P\\Tests\\FormsTest::__pest_evaluable_it_see_form_date_is_valid":0.011,"P\\Tests\\FormsTest::__pest_evaluable_it_the_form_can_be_rendered":0.007,"P\\Tests\\FormsTest::__pest_evaluable_it_can_render_list_Forms":0.01,"P\\Tests\\FormsTest::__pest_evaluable_it_see_form_when_not_require_login":0.007,"P\\Tests\\FormsTest::__pest_evaluable_it_can_render_Form_List":0.12,"P\\Tests\\FormsTest::__pest_evaluable_it_see_form_require_login_for_guest_user":0.009,"P\\Tests\\FormsTest::__pest_evaluable_it_can_render_show_Form":0.009,"P\\Tests\\FormsTest::__pest_evaluable_it_can_create":0.005,"P\\Tests\\FormsTest::__pest_evaluable_it_see_form_when_not_require_login_for_guest":0.007,"P\\Tests\\FormsTest::__pest_evaluable_it_see_form_require_login_for_logged_in_user":0.007,"P\\Tests\\FormsTest::__pest_evaluable_it_can_render_create_form_page":0.124,"P\\Tests\\FormsTest::__pest_evaluable_it_can_save":1.187,"P\\Tests\\FormsTest::__pest_evaluable_it_can_retrieve_data":0.047,"P\\Tests\\ArchTest::__pest_evaluable_it_will_not_use_debugging_functions":0.169,"P\\Tests\\ResourcesTest::__pest_evaluable_it_can_test":0.003,"P\\Tests\\ResourcesTest::__pest_evaluable_it_can_render_form_list":0.046,"P\\Tests\\ResourcesTest::__pest_evaluable_it_can_render_category_list":0.071,"P\\Tests\\ResourcesTest::__pest_evaluable_it_can_render_collection_list":0.027}} \ No newline at end of file +{"version":"pest_2.34.5","defects":[],"times":{"P\\Tests\\ArchTest::__pest_evaluable_it_will_not_use_debugging_functions":0.236,"P\\Tests\\ResourcesTest::__pest_evaluable_it_can_test":0.004,"P\\Tests\\ResourcesTest::__pest_evaluable_it_can_render_collection_list":0.205,"P\\Tests\\ResourcesTest::__pest_evaluable_it_can_render_form_list":0.076,"P\\Tests\\ResourcesTest::__pest_evaluable_it_can_render_category_list":0.082,"P\\Tests\\FormsTest::__pest_evaluable_it_can_retrieve_data":0.112,"P\\Tests\\FormsTest::__pest_evaluable_it_see_form_require_login_for_logged_in_user":0.015,"P\\Tests\\FormsTest::__pest_evaluable_it_can_render_Form_List":0.05,"P\\Tests\\FormsTest::__pest_evaluable_it_see_form_when_not_require_login_for_guest":0.009,"P\\Tests\\FormsTest::__pest_evaluable_it_can_save":1.285,"P\\Tests\\FormsTest::__pest_evaluable_it_the_form_can_be_rendered":0.008,"P\\Tests\\FormsTest::__pest_evaluable_it_can_not_edit":0.047,"P\\Tests\\FormsTest::__pest_evaluable_it_see_form_require_login_for_guest_user":0.01,"P\\Tests\\FormsTest::__pest_evaluable_it_can_create":0.006,"P\\Tests\\FormsTest::__pest_evaluable_it_see_form_date_is_valid":0.013,"P\\Tests\\FormsTest::__pest_evaluable_it_see_form_when_not_require_login":0.008,"P\\Tests\\FormsTest::__pest_evaluable_it_can_render_list_Forms":0.014,"P\\Tests\\FormsTest::__pest_evaluable_it_can_render_create_form_page":0.089,"P\\Tests\\FormsTest::__pest_evaluable_it_see_ended_form_date":0.008,"P\\Tests\\FormsTest::__pest_evaluable_it_can_list_Form":0.006,"P\\Tests\\FormsTest::__pest_evaluable_it_can_render_show_Form":0.011}} \ No newline at end of file diff --git a/composer.lock b/composer.lock index ee640051..9fe97e6f 100644 --- a/composer.lock +++ b/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2ee8249f6d681cf6e1ec23fed88ac75f", + "content-hash": "a47b8a6bd7f393fbee632236948b098f", "packages": [ { "name": "anourvalar/eloquent-serialize", - "version": "1.2.20", + "version": "1.2.22", "source": { "type": "git", "url": "https://github.com/AnourValar/eloquent-serialize.git", - "reference": "f8408e92768ff295990e3a1edb7e47950e008c63" + "reference": "6e91093c10940859c4b0549b6a90f18d8db45998" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/f8408e92768ff295990e3a1edb7e47950e008c63", - "reference": "f8408e92768ff295990e3a1edb7e47950e008c63", + "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/6e91093c10940859c4b0549b6a90f18d8db45998", + "reference": "6e91093c10940859c4b0549b6a90f18d8db45998", "shasum": "" }, "require": { @@ -68,9 +68,9 @@ ], "support": { "issues": "https://github.com/AnourValar/eloquent-serialize/issues", - "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.2.20" + "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.2.22" }, - "time": "2024-03-08T14:48:54+00:00" + "time": "2024-03-22T12:56:46+00:00" }, { "name": "archtechx/laravel-seo", @@ -1422,16 +1422,16 @@ }, { "name": "filament/actions", - "version": "v3.2.49", + "version": "v3.2.60", "source": { "type": "git", "url": "https://github.com/filamentphp/actions.git", - "reference": "90886c43e1ac2625693dc70679be4b9420afe13c" + "reference": "8523fabf8d48301d80023d3955bc2d21e52b1e2f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/actions/zipball/90886c43e1ac2625693dc70679be4b9420afe13c", - "reference": "90886c43e1ac2625693dc70679be4b9420afe13c", + "url": "https://api.github.com/repos/filamentphp/actions/zipball/8523fabf8d48301d80023d3955bc2d21e52b1e2f", + "reference": "8523fabf8d48301d80023d3955bc2d21e52b1e2f", "shasum": "" }, "require": { @@ -1471,20 +1471,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2024-03-14T12:01:26+00:00" + "time": "2024-03-21T22:43:16+00:00" }, { "name": "filament/filament", - "version": "v3.2.49", + "version": "v3.2.60", "source": { "type": "git", "url": "https://github.com/filamentphp/panels.git", - "reference": "310ee025cdae8bb05c40ab620924a9272aff1c73" + "reference": "08673dba066dcb54cf9019596ffea3d79997496c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/panels/zipball/310ee025cdae8bb05c40ab620924a9272aff1c73", - "reference": "310ee025cdae8bb05c40ab620924a9272aff1c73", + "url": "https://api.github.com/repos/filamentphp/panels/zipball/08673dba066dcb54cf9019596ffea3d79997496c", + "reference": "08673dba066dcb54cf9019596ffea3d79997496c", "shasum": "" }, "require": { @@ -1536,20 +1536,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2024-03-14T12:01:31+00:00" + "time": "2024-03-23T20:58:51+00:00" }, { "name": "filament/forms", - "version": "v3.2.49", + "version": "v3.2.60", "source": { "type": "git", "url": "https://github.com/filamentphp/forms.git", - "reference": "21515f37ee2de29f9753302112723a7b73162793" + "reference": "c864c8ac34e1372964d2d4e9595d10ddaabf88c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/forms/zipball/21515f37ee2de29f9753302112723a7b73162793", - "reference": "21515f37ee2de29f9753302112723a7b73162793", + "url": "https://api.github.com/repos/filamentphp/forms/zipball/c864c8ac34e1372964d2d4e9595d10ddaabf88c8", + "reference": "c864c8ac34e1372964d2d4e9595d10ddaabf88c8", "shasum": "" }, "require": { @@ -1592,20 +1592,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2024-03-14T10:54:01+00:00" + "time": "2024-03-23T23:27:26+00:00" }, { "name": "filament/infolists", - "version": "v3.2.49", + "version": "v3.2.60", "source": { "type": "git", "url": "https://github.com/filamentphp/infolists.git", - "reference": "72217e2ae055bfea51feb3351e00f269b188796d" + "reference": "64d1ed73e05eebb688e343348e126a038169c7d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/infolists/zipball/72217e2ae055bfea51feb3351e00f269b188796d", - "reference": "72217e2ae055bfea51feb3351e00f269b188796d", + "url": "https://api.github.com/repos/filamentphp/infolists/zipball/64d1ed73e05eebb688e343348e126a038169c7d0", + "reference": "64d1ed73e05eebb688e343348e126a038169c7d0", "shasum": "" }, "require": { @@ -1643,20 +1643,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2024-03-14T10:54:02+00:00" + "time": "2024-03-23T23:27:28+00:00" }, { "name": "filament/notifications", - "version": "v3.2.49", + "version": "v3.2.60", "source": { "type": "git", "url": "https://github.com/filamentphp/notifications.git", - "reference": "a25fe75eeebc61d4a6e2bfa88e9e501a5f8020bd" + "reference": "f9a790ee2d5103ea87c88e6d545ea6ceb770cbe5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/notifications/zipball/a25fe75eeebc61d4a6e2bfa88e9e501a5f8020bd", - "reference": "a25fe75eeebc61d4a6e2bfa88e9e501a5f8020bd", + "url": "https://api.github.com/repos/filamentphp/notifications/zipball/f9a790ee2d5103ea87c88e6d545ea6ceb770cbe5", + "reference": "f9a790ee2d5103ea87c88e6d545ea6ceb770cbe5", "shasum": "" }, "require": { @@ -1695,11 +1695,11 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2024-03-14T10:54:06+00:00" + "time": "2024-03-19T00:28:12+00:00" }, { "name": "filament/spatie-laravel-translatable-plugin", - "version": "v3.2.49", + "version": "v3.2.60", "source": { "type": "git", "url": "https://github.com/filamentphp/spatie-laravel-translatable-plugin.git", @@ -1744,16 +1744,16 @@ }, { "name": "filament/support", - "version": "v3.2.49", + "version": "v3.2.60", "source": { "type": "git", "url": "https://github.com/filamentphp/support.git", - "reference": "b17bc4e8eb1b9fc1970384d60ca78fb230f3d9e4" + "reference": "05c0c56bdb66226dc8d239ac91bc973a0dd33edb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/support/zipball/b17bc4e8eb1b9fc1970384d60ca78fb230f3d9e4", - "reference": "b17bc4e8eb1b9fc1970384d60ca78fb230f3d9e4", + "url": "https://api.github.com/repos/filamentphp/support/zipball/05c0c56bdb66226dc8d239ac91bc973a0dd33edb", + "reference": "05c0c56bdb66226dc8d239ac91bc973a0dd33edb", "shasum": "" }, "require": { @@ -1763,13 +1763,13 @@ "illuminate/contracts": "^10.45|^11.0", "illuminate/support": "^10.45|^11.0", "illuminate/view": "^10.45|^11.0", - "livewire/livewire": "^3.2.3", + "livewire/livewire": "^3.4.9", "php": "^8.1", "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0", "spatie/color": "^1.5", "spatie/invade": "^1.0|^2.0", "spatie/laravel-package-tools": "^1.9", - "symfony/html-sanitizer": "^6.1" + "symfony/html-sanitizer": "^6.1|^7.0" }, "type": "library", "extra": { @@ -1797,20 +1797,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2024-03-14T10:54:28+00:00" + "time": "2024-03-23T20:59:06+00:00" }, { "name": "filament/tables", - "version": "v3.2.49", + "version": "v3.2.60", "source": { "type": "git", "url": "https://github.com/filamentphp/tables.git", - "reference": "260fa164f4f5c792da40c0a3fa8bb274b64dbf56" + "reference": "b58dbfd4b3f4da6708e67a4ca0512bc914faa991" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/tables/zipball/260fa164f4f5c792da40c0a3fa8bb274b64dbf56", - "reference": "260fa164f4f5c792da40c0a3fa8bb274b64dbf56", + "url": "https://api.github.com/repos/filamentphp/tables/zipball/b58dbfd4b3f4da6708e67a4ca0512bc914faa991", + "reference": "b58dbfd4b3f4da6708e67a4ca0512bc914faa991", "shasum": "" }, "require": { @@ -1850,11 +1850,11 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2024-03-14T10:54:32+00:00" + "time": "2024-03-23T20:59:09+00:00" }, { "name": "filament/widgets", - "version": "v3.2.49", + "version": "v3.2.60", "source": { "type": "git", "url": "https://github.com/filamentphp/widgets.git", @@ -2249,16 +2249,16 @@ }, { "name": "kirschbaum-development/eloquent-power-joins", - "version": "3.5.0", + "version": "3.5.2", "source": { "type": "git", "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git", - "reference": "13feb3692ab6c0475b2c05de131d5f5822fb250a" + "reference": "2fae3aca9eefd4591603a7e53406ab9f56b69fad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/13feb3692ab6c0475b2c05de131d5f5822fb250a", - "reference": "13feb3692ab6c0475b2c05de131d5f5822fb250a", + "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/2fae3aca9eefd4591603a7e53406ab9f56b69fad", + "reference": "2fae3aca9eefd4591603a7e53406ab9f56b69fad", "shasum": "" }, "require": { @@ -2305,9 +2305,9 @@ ], "support": { "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues", - "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/3.5.0" + "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/3.5.2" }, - "time": "2024-02-13T15:40:14+00:00" + "time": "2024-03-20T10:23:27+00:00" }, { "name": "lara-zeus/accordion", @@ -2569,16 +2569,16 @@ }, { "name": "laravel/framework", - "version": "v10.48.2", + "version": "v10.48.4", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "32a8bb151d748b579c3794dea53b56bd40dfbbd3" + "reference": "7e0701bf59cb76a51f7c1f7bea51c0c0c29c0b72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/32a8bb151d748b579c3794dea53b56bd40dfbbd3", - "reference": "32a8bb151d748b579c3794dea53b56bd40dfbbd3", + "url": "https://api.github.com/repos/laravel/framework/zipball/7e0701bf59cb76a51f7c1f7bea51c0c0c29c0b72", + "reference": "7e0701bf59cb76a51f7c1f7bea51c0c0c29c0b72", "shasum": "" }, "require": { @@ -2683,7 +2683,7 @@ "league/flysystem-sftp-v3": "^3.0", "mockery/mockery": "^1.5.1", "nyholm/psr7": "^1.2", - "orchestra/testbench-core": "^8.18", + "orchestra/testbench-core": "^8.23.4", "pda/pheanstalk": "^4.0", "phpstan/phpstan": "^1.4.7", "phpunit/phpunit": "^10.0.7", @@ -2772,7 +2772,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-03-12T16:35:43+00:00" + "time": "2024-03-21T13:36:36+00:00" }, { "name": "laravel/prompts", @@ -3170,16 +3170,16 @@ }, { "name": "league/flysystem", - "version": "3.25.0", + "version": "3.26.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "4c44347133618cccd9b3df1729647a1577b4ad99" + "reference": "072735c56cc0da00e10716dd90d5a7f7b40b36be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/4c44347133618cccd9b3df1729647a1577b4ad99", - "reference": "4c44347133618cccd9b3df1729647a1577b4ad99", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/072735c56cc0da00e10716dd90d5a7f7b40b36be", + "reference": "072735c56cc0da00e10716dd90d5a7f7b40b36be", "shasum": "" }, "require": { @@ -3244,7 +3244,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.25.0" + "source": "https://github.com/thephpleague/flysystem/tree/3.26.0" }, "funding": [ { @@ -3256,20 +3256,20 @@ "type": "github" } ], - "time": "2024-03-09T17:06:45+00:00" + "time": "2024-03-25T11:49:53+00:00" }, { "name": "league/flysystem-local", - "version": "3.23.1", + "version": "3.25.1", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-local.git", - "reference": "b884d2bf9b53bb4804a56d2df4902bb51e253f00" + "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/b884d2bf9b53bb4804a56d2df4902bb51e253f00", - "reference": "b884d2bf9b53bb4804a56d2df4902bb51e253f00", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/61a6a90d6e999e4ddd9ce5adb356de0939060b92", + "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92", "shasum": "" }, "require": { @@ -3303,8 +3303,7 @@ "local" ], "support": { - "issues": "https://github.com/thephpleague/flysystem-local/issues", - "source": "https://github.com/thephpleague/flysystem-local/tree/3.23.1" + "source": "https://github.com/thephpleague/flysystem-local/tree/3.25.1" }, "funding": [ { @@ -3316,7 +3315,7 @@ "type": "github" } ], - "time": "2024-01-26T18:25:23+00:00" + "time": "2024-03-15T19:58:44+00:00" }, { "name": "league/mime-type-detection", @@ -3376,16 +3375,16 @@ }, { "name": "league/uri", - "version": "7.4.0", + "version": "7.4.1", "source": { "type": "git", "url": "https://github.com/thephpleague/uri.git", - "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5" + "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri/zipball/bf414ba956d902f5d98bf9385fcf63954f09dce5", - "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4", + "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4", "shasum": "" }, "require": { @@ -3454,7 +3453,7 @@ "docs": "https://uri.thephpleague.com", "forum": "https://thephpleague.slack.com", "issues": "https://github.com/thephpleague/uri-src/issues", - "source": "https://github.com/thephpleague/uri/tree/7.4.0" + "source": "https://github.com/thephpleague/uri/tree/7.4.1" }, "funding": [ { @@ -3462,20 +3461,20 @@ "type": "github" } ], - "time": "2023-12-01T06:24:25+00:00" + "time": "2024-03-23T07:42:40+00:00" }, { "name": "league/uri-interfaces", - "version": "7.4.0", + "version": "7.4.1", "source": { "type": "git", "url": "https://github.com/thephpleague/uri-interfaces.git", - "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3" + "reference": "8d43ef5c841032c87e2de015972c06f3865ef718" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/bd8c487ec236930f7bbc42b8d374fa882fbba0f3", - "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718", + "reference": "8d43ef5c841032c87e2de015972c06f3865ef718", "shasum": "" }, "require": { @@ -3538,7 +3537,7 @@ "docs": "https://uri.thephpleague.com", "forum": "https://thephpleague.slack.com", "issues": "https://github.com/thephpleague/uri-src/issues", - "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.0" + "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1" }, "funding": [ { @@ -3546,7 +3545,7 @@ "type": "github" } ], - "time": "2023-11-24T15:40:42+00:00" + "time": "2024-03-23T07:42:40+00:00" }, { "name": "livewire/livewire", @@ -5150,16 +5149,16 @@ }, { "name": "spatie/laravel-package-tools", - "version": "1.16.3", + "version": "1.16.4", "source": { "type": "git", "url": "https://github.com/spatie/laravel-package-tools.git", - "reference": "59db18c2e20d49a0b6d447bb1c654f6c123beb9e" + "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/59db18c2e20d49a0b6d447bb1c654f6c123beb9e", - "reference": "59db18c2e20d49a0b6d447bb1c654f6c123beb9e", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53", + "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53", "shasum": "" }, "require": { @@ -5198,7 +5197,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-package-tools/issues", - "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.3" + "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.4" }, "funding": [ { @@ -5206,7 +5205,7 @@ "type": "github" } ], - "time": "2024-03-07T07:35:57+00:00" + "time": "2024-03-20T07:29:11+00:00" }, { "name": "spatie/laravel-translatable", @@ -5813,23 +5812,23 @@ }, { "name": "symfony/html-sanitizer", - "version": "v6.4.4", + "version": "v7.0.4", "source": { "type": "git", "url": "https://github.com/symfony/html-sanitizer.git", - "reference": "83e1dc8b49345e078cfa21bd4c563dfa99c5ed63" + "reference": "a8543ad56bc5250378ca44bb3988516fcb073c5d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/83e1dc8b49345e078cfa21bd4c563dfa99c5ed63", - "reference": "83e1dc8b49345e078cfa21bd4c563dfa99c5ed63", + "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/a8543ad56bc5250378ca44bb3988516fcb073c5d", + "reference": "a8543ad56bc5250378ca44bb3988516fcb073c5d", "shasum": "" }, "require": { "ext-dom": "*", "league/uri": "^6.5|^7.0", "masterminds/html5": "^2.7.2", - "php": ">=8.1" + "php": ">=8.2" }, "type": "library", "autoload": { @@ -5862,7 +5861,7 @@ "sanitizer" ], "support": { - "source": "https://github.com/symfony/html-sanitizer/tree/v6.4.4" + "source": "https://github.com/symfony/html-sanitizer/tree/v7.0.4" }, "funding": [ { @@ -5878,7 +5877,7 @@ "type": "tidelift" } ], - "time": "2024-02-13T16:25:19+00:00" + "time": "2024-02-15T11:33:06+00:00" }, { "name": "symfony/http-foundation", @@ -8021,16 +8020,16 @@ }, { "name": "composer/pcre", - "version": "3.1.2", + "version": "3.1.3", "source": { "type": "git", "url": "https://github.com/composer/pcre.git", - "reference": "4775f35b2d70865807c89d32c8e7385b86eb0ace" + "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/4775f35b2d70865807c89d32c8e7385b86eb0ace", - "reference": "4775f35b2d70865807c89d32c8e7385b86eb0ace", + "url": "https://api.github.com/repos/composer/pcre/zipball/5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", + "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", "shasum": "" }, "require": { @@ -8072,7 +8071,7 @@ ], "support": { "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.1.2" + "source": "https://github.com/composer/pcre/tree/3.1.3" }, "funding": [ { @@ -8088,7 +8087,7 @@ "type": "tidelift" } ], - "time": "2024-03-07T15:38:35+00:00" + "time": "2024-03-19T10:26:25+00:00" }, { "name": "composer/semver", @@ -8512,16 +8511,16 @@ }, { "name": "friendsofphp/php-cs-fixer", - "version": "v3.51.0", + "version": "v3.52.1", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", - "reference": "127fa74f010da99053e3f5b62672615b72dd6efd" + "reference": "6e77207f0d851862ceeb6da63e6e22c01b1587bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/127fa74f010da99053e3f5b62672615b72dd6efd", - "reference": "127fa74f010da99053e3f5b62672615b72dd6efd", + "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/6e77207f0d851862ceeb6da63e6e22c01b1587bc", + "reference": "6e77207f0d851862ceeb6da63e6e22c01b1587bc", "shasum": "" }, "require": { @@ -8592,7 +8591,7 @@ ], "support": { "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", - "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.51.0" + "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.52.1" }, "funding": [ { @@ -8600,7 +8599,7 @@ "type": "github" } ], - "time": "2024-02-28T19:50:06+00:00" + "time": "2024-03-19T21:02:43+00:00" }, { "name": "guzzlehttp/psr7", @@ -9114,16 +9113,16 @@ }, { "name": "mockery/mockery", - "version": "1.6.9", + "version": "1.6.11", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06" + "reference": "81a161d0b135df89951abd52296adf97deb0723d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06", - "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06", + "url": "https://api.github.com/repos/mockery/mockery/zipball/81a161d0b135df89951abd52296adf97deb0723d", + "reference": "81a161d0b135df89951abd52296adf97deb0723d", "shasum": "" }, "require": { @@ -9135,8 +9134,8 @@ "phpunit/phpunit": "<8.0" }, "require-dev": { - "phpunit/phpunit": "^8.5 || ^9.6.10", - "symplify/easy-coding-standard": "^12.0.8" + "phpunit/phpunit": "^8.5 || ^9.6.17", + "symplify/easy-coding-standard": "^12.1.14" }, "type": "library", "autoload": { @@ -9193,7 +9192,7 @@ "security": "https://github.com/mockery/mockery/security/advisories", "source": "https://github.com/mockery/mockery" }, - "time": "2023-12-10T02:24:34+00:00" + "time": "2024-03-21T18:34:15+00:00" }, { "name": "myclabs/deep-copy", @@ -9619,25 +9618,25 @@ }, { "name": "orchestra/canvas", - "version": "v8.11.7", + "version": "v8.11.8", "source": { "type": "git", "url": "https://github.com/orchestral/canvas.git", - "reference": "e4a0157f522222725f1559bde0da1091a91542fb" + "reference": "31b1f338fb9d2f3c97ccbc62b27d3e5bf86a02e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/orchestral/canvas/zipball/e4a0157f522222725f1559bde0da1091a91542fb", - "reference": "e4a0157f522222725f1559bde0da1091a91542fb", + "url": "https://api.github.com/repos/orchestral/canvas/zipball/31b1f338fb9d2f3c97ccbc62b27d3e5bf86a02e5", + "reference": "31b1f338fb9d2f3c97ccbc62b27d3e5bf86a02e5", "shasum": "" }, "require": { "composer-runtime-api": "^2.2", "composer/semver": "^3.0", - "illuminate/console": "^10.39", - "illuminate/database": "^10.39", - "illuminate/filesystem": "^10.39", - "illuminate/support": "^10.39", + "illuminate/console": "^10.48.4", + "illuminate/database": "^10.48.4", + "illuminate/filesystem": "^10.48.4", + "illuminate/support": "^10.48.4", "orchestra/canvas-core": "^8.10.2", "orchestra/testbench-core": "^8.19", "php": "^8.1", @@ -9645,12 +9644,12 @@ "symfony/yaml": "^6.2" }, "require-dev": { - "laravel/framework": "^10.39", + "laravel/framework": "^10.48.4", "laravel/pint": "^1.6", "mockery/mockery": "^1.5.1", - "phpstan/phpstan": "^1.10.5", - "phpunit/phpunit": "^10.1", - "spatie/laravel-ray": "^1.32.4" + "phpstan/phpstan": "^1.10.56", + "phpunit/phpunit": "^10.5", + "spatie/laravel-ray": "^1.33" }, "bin": [ "canvas" @@ -9688,9 +9687,9 @@ "description": "Code Generators for Laravel Applications and Packages", "support": { "issues": "https://github.com/orchestral/canvas/issues", - "source": "https://github.com/orchestral/canvas/tree/v8.11.7" + "source": "https://github.com/orchestral/canvas/tree/v8.11.8" }, - "time": "2024-02-07T10:29:23+00:00" + "time": "2024-03-21T14:41:18+00:00" }, { "name": "orchestra/canvas-core", @@ -9766,16 +9765,16 @@ }, { "name": "orchestra/testbench", - "version": "v8.22.0", + "version": "v8.22.1", "source": { "type": "git", "url": "https://github.com/orchestral/testbench.git", - "reference": "77e857d3f57c892dbe76e71d4212f5f03a66887f" + "reference": "2ab5afb6b4dbcc8ad132e60db4e6eb5f1069cb6d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/orchestral/testbench/zipball/77e857d3f57c892dbe76e71d4212f5f03a66887f", - "reference": "77e857d3f57c892dbe76e71d4212f5f03a66887f", + "url": "https://api.github.com/repos/orchestral/testbench/zipball/2ab5afb6b4dbcc8ad132e60db4e6eb5f1069cb6d", + "reference": "2ab5afb6b4dbcc8ad132e60db4e6eb5f1069cb6d", "shasum": "" }, "require": { @@ -9783,7 +9782,7 @@ "fakerphp/faker": "^1.21", "laravel/framework": "^10.40", "mockery/mockery": "^1.5.1", - "orchestra/testbench-core": "^8.23", + "orchestra/testbench-core": "^8.23.4", "orchestra/workbench": "^1.4 || ^8.4", "php": "^8.1", "phpunit/phpunit": "^9.6 || ^10.1", @@ -9815,22 +9814,22 @@ ], "support": { "issues": "https://github.com/orchestral/testbench/issues", - "source": "https://github.com/orchestral/testbench/tree/v8.22.0" + "source": "https://github.com/orchestral/testbench/tree/v8.22.1" }, - "time": "2024-03-13T06:52:48+00:00" + "time": "2024-03-19T12:59:06+00:00" }, { "name": "orchestra/testbench-core", - "version": "v8.23.0", + "version": "v8.23.5", "source": { "type": "git", "url": "https://github.com/orchestral/testbench-core.git", - "reference": "35936ff29b42439fda75dbb635cc57e113f17c98" + "reference": "0e5c930d247f50d1d6d5997441e57891af862634" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/35936ff29b42439fda75dbb635cc57e113f17c98", - "reference": "35936ff29b42439fda75dbb635cc57e113f17c98", + "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/0e5c930d247f50d1d6d5997441e57891af862634", + "reference": "0e5c930d247f50d1d6d5997441e57891af862634", "shasum": "" }, "require": { @@ -9909,7 +9908,7 @@ "issues": "https://github.com/orchestral/testbench/issues", "source": "https://github.com/orchestral/testbench-core" }, - "time": "2024-03-13T04:02:37+00:00" + "time": "2024-03-25T04:32:37+00:00" }, { "name": "orchestra/workbench", @@ -9983,16 +9982,16 @@ }, { "name": "pestphp/pest", - "version": "v2.34.2", + "version": "v2.34.5", "source": { "type": "git", "url": "https://github.com/pestphp/pest.git", - "reference": "853f6efce6bc86636f48a0e921a44ccee9a66cf3" + "reference": "863a0cc83744c677ffdb28a6a2b841dd049e57ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pestphp/pest/zipball/853f6efce6bc86636f48a0e921a44ccee9a66cf3", - "reference": "853f6efce6bc86636f48a0e921a44ccee9a66cf3", + "url": "https://api.github.com/repos/pestphp/pest/zipball/863a0cc83744c677ffdb28a6a2b841dd049e57ce", + "reference": "863a0cc83744c677ffdb28a6a2b841dd049e57ce", "shasum": "" }, "require": { @@ -10002,10 +10001,10 @@ "pestphp/pest-plugin": "^2.1.1", "pestphp/pest-plugin-arch": "^2.7.0", "php": "^8.1.0", - "phpunit/phpunit": "^10.5.12" + "phpunit/phpunit": "^10.5.15" }, "conflict": { - "phpunit/phpunit": ">10.5.12", + "phpunit/phpunit": ">10.5.15", "sebastian/exporter": "<5.1.0", "webmozart/assert": "<1.11.0" }, @@ -10075,7 +10074,7 @@ ], "support": { "issues": "https://github.com/pestphp/pest/issues", - "source": "https://github.com/pestphp/pest/tree/v2.34.2" + "source": "https://github.com/pestphp/pest/tree/v2.34.5" }, "funding": [ { @@ -10087,7 +10086,7 @@ "type": "github" } ], - "time": "2024-03-11T18:05:47+00:00" + "time": "2024-03-22T08:44:19+00:00" }, { "name": "pestphp/pest-plugin", @@ -10847,16 +10846,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.26.0", + "version": "1.27.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "231e3186624c03d7e7c890ec662b81e6b0405227" + "reference": "86e4d5a4b036f8f0be1464522f4c6b584c452757" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/231e3186624c03d7e7c890ec662b81e6b0405227", - "reference": "231e3186624c03d7e7c890ec662b81e6b0405227", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/86e4d5a4b036f8f0be1464522f4c6b584c452757", + "reference": "86e4d5a4b036f8f0be1464522f4c6b584c452757", "shasum": "" }, "require": { @@ -10888,22 +10887,22 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.26.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.27.0" }, - "time": "2024-02-23T16:05:55+00:00" + "time": "2024-03-21T13:14:53+00:00" }, { "name": "phpstan/phpstan", - "version": "1.10.62", + "version": "1.10.65", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "cd5c8a1660ed3540b211407c77abf4af193a6af9" + "reference": "3c657d057a0b7ecae19cb12db446bbc99d8839c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/cd5c8a1660ed3540b211407c77abf4af193a6af9", - "reference": "cd5c8a1660ed3540b211407c77abf4af193a6af9", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/3c657d057a0b7ecae19cb12db446bbc99d8839c6", + "reference": "3c657d057a0b7ecae19cb12db446bbc99d8839c6", "shasum": "" }, "require": { @@ -10952,7 +10951,7 @@ "type": "tidelift" } ], - "time": "2024-03-13T12:27:20+00:00" + "time": "2024-03-23T10:30:26+00:00" }, { "name": "phpunit/php-code-coverage", @@ -11277,16 +11276,16 @@ }, { "name": "phpunit/phpunit", - "version": "10.5.12", + "version": "10.5.15", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "41a9886b85ac7bf3929853baf96b95361cd69d2b" + "reference": "86376e05e8745ed81d88232ff92fee868247b07b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/41a9886b85ac7bf3929853baf96b95361cd69d2b", - "reference": "41a9886b85ac7bf3929853baf96b95361cd69d2b", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/86376e05e8745ed81d88232ff92fee868247b07b", + "reference": "86376e05e8745ed81d88232ff92fee868247b07b", "shasum": "" }, "require": { @@ -11358,7 +11357,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.12" + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.15" }, "funding": [ { @@ -11374,7 +11373,7 @@ "type": "tidelift" } ], - "time": "2024-03-09T12:04:07+00:00" + "time": "2024-03-22T04:17:47+00:00" }, { "name": "pimple/pimple", @@ -11431,16 +11430,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.0", + "version": "v0.12.2", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d" + "reference": "9185c66c2165bbf4d71de78a69dccf4974f9538d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d", - "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9185c66c2165bbf4d71de78a69dccf4974f9538d", + "reference": "9185c66c2165bbf4d71de78a69dccf4974f9538d", "shasum": "" }, "require": { @@ -11504,9 +11503,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.0" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.2" }, - "time": "2023-12-20T15:28:09+00:00" + "time": "2024-03-17T01:53:00+00:00" }, { "name": "ralouphie/getallheaders", @@ -11554,16 +11553,16 @@ }, { "name": "rector/rector", - "version": "1.0.2", + "version": "1.0.3", "source": { "type": "git", "url": "https://github.com/rectorphp/rector.git", - "reference": "7596fa6da06c6a20c012efe6bb3d9188a9113b11" + "reference": "c59507a9090b465d65e1aceed91e5b81986e375b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/rectorphp/rector/zipball/7596fa6da06c6a20c012efe6bb3d9188a9113b11", - "reference": "7596fa6da06c6a20c012efe6bb3d9188a9113b11", + "url": "https://api.github.com/repos/rectorphp/rector/zipball/c59507a9090b465d65e1aceed91e5b81986e375b", + "reference": "c59507a9090b465d65e1aceed91e5b81986e375b", "shasum": "" }, "require": { @@ -11598,7 +11597,7 @@ ], "support": { "issues": "https://github.com/rectorphp/rector/issues", - "source": "https://github.com/rectorphp/rector/tree/1.0.2" + "source": "https://github.com/rectorphp/rector/tree/1.0.3" }, "funding": [ { @@ -11606,7 +11605,7 @@ "type": "github" } ], - "time": "2024-03-03T12:32:31+00:00" + "time": "2024-03-14T15:04:18+00:00" }, { "name": "sebastian/cli-parser", @@ -11980,16 +11979,16 @@ }, { "name": "sebastian/environment", - "version": "6.0.1", + "version": "6.1.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951" + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951", - "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984", + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984", "shasum": "" }, "require": { @@ -12004,7 +12003,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "6.0-dev" + "dev-main": "6.1-dev" } }, "autoload": { @@ -12032,7 +12031,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", "security": "https://github.com/sebastianbergmann/environment/security/policy", - "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1" + "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0" }, "funding": [ { @@ -12040,7 +12039,7 @@ "type": "github" } ], - "time": "2023-04-11T05:39:26+00:00" + "time": "2024-03-23T08:47:14+00:00" }, { "name": "sebastian/exporter", @@ -13970,16 +13969,16 @@ }, { "name": "zbateson/mb-wrapper", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/zbateson/mb-wrapper.git", - "reference": "faf35dddfacfc5d4d5f9210143eafd7a7fe74334" + "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/faf35dddfacfc5d4d5f9210143eafd7a7fe74334", - "reference": "faf35dddfacfc5d4d5f9210143eafd7a7fe74334", + "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/09a8b77eb94af3823a9a6623dcc94f8d988da67f", + "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f", "shasum": "" }, "require": { @@ -13990,7 +13989,7 @@ "require-dev": { "friendsofphp/php-cs-fixer": "*", "phpstan/phpstan": "*", - "phpunit/phpunit": "<=9.0" + "phpunit/phpunit": "<10.0" }, "suggest": { "ext-iconv": "For best support/performance", @@ -14027,7 +14026,7 @@ ], "support": { "issues": "https://github.com/zbateson/mb-wrapper/issues", - "source": "https://github.com/zbateson/mb-wrapper/tree/1.2.0" + "source": "https://github.com/zbateson/mb-wrapper/tree/1.2.1" }, "funding": [ { @@ -14035,7 +14034,7 @@ "type": "github" } ], - "time": "2023-01-11T23:05:44+00:00" + "time": "2024-03-18T04:31:04+00:00" }, { "name": "zbateson/stream-decorators", diff --git a/database/factories/CategoryFactory.php b/database/factories/CategoryFactory.php index f9bbf1d0..9fd5b6cd 100644 --- a/database/factories/CategoryFactory.php +++ b/database/factories/CategoryFactory.php @@ -9,14 +9,7 @@ class CategoryFactory extends Factory { protected $model = Category::class; - /** - * Define the model's default state. - * - * @return array - * - * @throws \JsonException - */ - public function definition() + public function definition(): array { return [ 'name' => $this->faker->words(3, true), diff --git a/database/factories/CollectionFactory.php b/database/factories/CollectionFactory.php index 2124a2aa..34dc851c 100644 --- a/database/factories/CollectionFactory.php +++ b/database/factories/CollectionFactory.php @@ -9,14 +9,7 @@ class CollectionFactory extends Factory { protected $model = Collection::class; - /** - * Define the model's default state. - * - * @return array - * - * @throws \JsonException - */ - public function definition() + public function definition(): array { return [ 'name' => $this->faker->words(3, true), diff --git a/database/factories/FieldFactory.php b/database/factories/FieldFactory.php index dc811514..362d44ec 100644 --- a/database/factories/FieldFactory.php +++ b/database/factories/FieldFactory.php @@ -10,12 +10,7 @@ class FieldFactory extends Factory { protected $model = Field::class; - /** - * Define the model's default state. - * - * @return array - */ - public function definition() + public function definition(): array { return [ 'name' => $this->faker->words(3, true), diff --git a/database/factories/FieldResponseFactory.php b/database/factories/FieldResponseFactory.php index 65f96d12..c92fb649 100644 --- a/database/factories/FieldResponseFactory.php +++ b/database/factories/FieldResponseFactory.php @@ -10,12 +10,7 @@ class FieldResponseFactory extends Factory { protected $model = FieldResponse::class; - /** - * Define the model's default state. - * - * @return array - */ - public function definition() + public function definition(): array { return [ 'form_id' => BoltPlugin::getModel('Forms')::factory(), diff --git a/database/factories/FormFactory.php b/database/factories/FormFactory.php index 029947af..c901f2af 100644 --- a/database/factories/FormFactory.php +++ b/database/factories/FormFactory.php @@ -10,12 +10,7 @@ class FormFactory extends Factory { protected $model = Form::class; - /** - * Define the model's default state. - * - * @return array - */ - public function definition() + public function definition(): array { return [ 'name' => $this->faker->words(3, true), diff --git a/database/factories/ResponseFactory.php b/database/factories/ResponseFactory.php index 3410ac52..7a689b1e 100644 --- a/database/factories/ResponseFactory.php +++ b/database/factories/ResponseFactory.php @@ -10,12 +10,7 @@ class ResponseFactory extends Factory { protected $model = Response::class; - /** - * Define the model's default state. - * - * @return array - */ - public function definition() + public function definition(): array { return [ 'form_id' => BoltPlugin::getModel('Form')::factory(), diff --git a/database/factories/SectionFactory.php b/database/factories/SectionFactory.php index 6c937c58..918e57d8 100644 --- a/database/factories/SectionFactory.php +++ b/database/factories/SectionFactory.php @@ -10,12 +10,7 @@ class SectionFactory extends Factory { protected $model = Section::class; - /** - * Define the model's default state. - * - * @return array - */ - public function definition() + public function definition(): array { return [ 'name' => $this->faker->words(3, true), diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index b4a336f6..0f4161af 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -10,9 +10,6 @@ class UserFactory extends Factory { protected $model = User::class; - /** - * Define the model's default state. - */ public function definition(): array { return [