diff --git a/app/Http/Livewire/Test/WebLN.php b/app/Http/Livewire/Test/WebLN.php new file mode 100644 index 00000000..572cd5fe --- /dev/null +++ b/app/Http/Livewire/Test/WebLN.php @@ -0,0 +1,19 @@ +layout('layouts.test'); + } +} diff --git a/app/Models/BookCase.php b/app/Models/BookCase.php index 45ecfa0a..1fd949a2 100644 --- a/app/Models/BookCase.php +++ b/app/Models/BookCase.php @@ -7,7 +7,6 @@ use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\HasMany; -use Spatie\Comments\Models\Concerns\HasComments; use Spatie\Image\Manipulations; use Spatie\MediaLibrary\HasMedia; use Spatie\MediaLibrary\InteractsWithMedia; @@ -16,7 +15,6 @@ use Spatie\MediaLibrary\MediaCollections\Models\Media; class BookCase extends Model implements HasMedia { use HasFactory; - use HasComments; use InteractsWithMedia; use Geoly; @@ -82,22 +80,4 @@ class BookCase extends Model implements HasMedia { return $this->hasMany(OrangePill::class); } - - /* - * This string will be used in notifications on what a new comment - * was made. - */ - public function commentableName(): string - { - return __('Bookcase'); - } - - /* - * This URL will be used in notifications to let the user know - * where the comment itself can be read. - */ - public function commentUrl(): string - { - return url()->route('bookCases.comment.bookcase', ['bookCase' => $this->id]); - } } diff --git a/app/Models/LibraryItem.php b/app/Models/LibraryItem.php index 784e3600..621ffb84 100644 --- a/app/Models/LibraryItem.php +++ b/app/Models/LibraryItem.php @@ -7,7 +7,6 @@ use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\BelongsToMany; use Illuminate\Support\Facades\Cookie; -use Spatie\Comments\Models\Concerns\HasComments; use Spatie\EloquentSortable\Sortable; use Spatie\EloquentSortable\SortableTrait; use Spatie\Feed\Feedable; @@ -27,7 +26,6 @@ class LibraryItem extends Model implements HasMedia, Sortable, Feedable use SortableTrait; use HasStatuses; use HasSlug; - use HasComments; /** * The attributes that aren't mass assignable. @@ -130,25 +128,6 @@ class LibraryItem extends Model implements HasMedia, Sortable, Feedable return $this->belongsToMany(Library::class); } - /* - * This URL will be used in notifications to let the user know - * where the comment itself can be read. - */ - - public function commentableName(): string - { - return __('Library Item'); - } - - public function commentUrl(): string - { - if ($this->type === 'markdown_article') { - return url()->route('article.view', ['libraryItem' => $this]); - } else { - return url()->route('libraryItem.view', ['libraryItem' => $this]); - } - } - public function toFeedItem(): CustomFeedItem { return CustomFeedItem::create() diff --git a/app/Models/MeetupEvent.php b/app/Models/MeetupEvent.php index 7b9abea3..c0003fca 100644 --- a/app/Models/MeetupEvent.php +++ b/app/Models/MeetupEvent.php @@ -5,12 +5,10 @@ namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; -use Spatie\Comments\Models\Concerns\HasComments; class MeetupEvent extends Model { use HasFactory; - use HasComments; /** * The attributes that aren't mass assignable. @@ -35,7 +33,7 @@ class MeetupEvent extends Model protected static function booted() { static::creating(function ($model) { - if (! $model->created_by) { + if (!$model->created_by) { $model->created_by = auth()->id(); } }); @@ -50,22 +48,4 @@ class MeetupEvent extends Model { return $this->belongsTo(Meetup::class); } - - /* - * This string will be used in notifications on what a new comment - * was made. - */ - public function commentableName(): string - { - return __('Meetup Event'); - } - - /* - * This URL will be used in notifications to let the user know - * where the comment itself can be read. - */ - public function commentUrl(): string - { - return url()->route('meetup.event.landing', ['country' => $this->meetup->city->country, 'meetupEvent' => $this]); - } } diff --git a/app/Models/User.php b/app/Models/User.php index 444205ae..1cd953ee 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -14,13 +14,11 @@ use ParagonIE\CipherSweet\BlindIndex; use ParagonIE\CipherSweet\EncryptedRow; use ParagonIE\CipherSweet\JsonFieldMap; use QCod\Gamify\Gamify; -use Spatie\Comments\Models\Concerns\InteractsWithComments; -use Spatie\Comments\Models\Concerns\Interfaces\CanComment; use Spatie\LaravelCipherSweet\Concerns\UsesCipherSweet; use Spatie\LaravelCipherSweet\Contracts\CipherSweetEncrypted; use Spatie\Permission\Traits\HasRoles; -class User extends Authenticatable implements MustVerifyEmail, CanComment, CipherSweetEncrypted +class User extends Authenticatable implements MustVerifyEmail, CipherSweetEncrypted { use UsesCipherSweet; use HasApiTokens; @@ -30,7 +28,6 @@ class User extends Authenticatable implements MustVerifyEmail, CanComment, Ciphe use Notifiable; use TwoFactorAuthenticatable; use HasRoles; - use InteractsWithComments; use Gamify; protected $guarded = []; diff --git a/app/Nova/BookCase.php b/app/Nova/BookCase.php index dbd59a13..f2cca4e4 100644 --- a/app/Nova/BookCase.php +++ b/app/Nova/BookCase.php @@ -128,8 +128,6 @@ class BookCase extends Resource HasMany::make(__('OrangePills'), 'orangePills', OrangePill::class), - MorphMany::make(__('Comments'), 'comments', Comment::class), - BelongsTo::make(__('Created By'), 'createdBy', User::class) ->canSee(function ($request) { return $request->user() diff --git a/app/Nova/Comment.php b/app/Nova/Comment.php deleted file mode 100644 index 0beae5c6..00000000 --- a/app/Nova/Comment.php +++ /dev/null @@ -1,83 +0,0 @@ -user() - ?->hasRole('super-admin'); - } - - public function authorizedToUpdate(Request $request) - { - return auth() - ->user() - ?->hasRole('super-admin'); - } - - public static function afterCreate(NovaRequest $request, Model $model) - { - \App\Models\User::find(1) - ->notify(new ModelCreatedNotification($model, str($request->getRequestUri()) - ->after('/nova-api/') - ->before('?') - ->toString())); - } - - public function fields(NovaRequest $request) - { - return [ - Text::make(__('Title'), function (CommentModel $comment) { - return $comment->topLevel()->commentable?->commentableName() ?? 'Deleted...'; - }) - ->readonly(), - - MorphTo::make(__('Commentator'), 'commentator') - ->types([ - User::class, - ]), - - Markdown::make(__('Original text'), 'original_text'), - - Text::make('', function (CommentModel $comment) { - if (! $url = $comment?->commentUrl()) { - return ''; - } - - return "".__('Show').''; - }) - ->asHtml(), - - Text::make(__('Status'), function (CommentModel $comment) { - if ($comment->isApproved()) { - return "
Approved
"; - } - - return "
Pending
"; - }) - ->asHtml(), - - DateTime::make(__('Created at'), 'created_at'), - - ]; - } -} diff --git a/app/Providers/NovaServiceProvider.php b/app/Providers/NovaServiceProvider.php index 9844ab2f..f938b7d3 100644 --- a/app/Providers/NovaServiceProvider.php +++ b/app/Providers/NovaServiceProvider.php @@ -6,7 +6,6 @@ use App\Nova\BitcoinEvent; use App\Nova\BookCase; use App\Nova\Category; use App\Nova\City; -use App\Nova\Comment; use App\Nova\Country; use App\Nova\Course; use App\Nova\CourseEvent; @@ -44,15 +43,6 @@ class NovaServiceProvider extends NovaApplicationServiceProvider parent::boot(); Nova::mainMenu(function (Request $request) { - $comments = $request->user() - ->hasRole('super-admin') || $request->user() - ->can('CommentPolicy.viewAny') ? [ - MenuSection::make('Comments', [ - MenuItem::resource(Comment::class), - ]) - ->icon('chat') - ->collapsable(), - ] : []; $adminItems = $request->user() ->hasRole('super-admin') || $request->user() @@ -151,7 +141,7 @@ class NovaServiceProvider extends NovaApplicationServiceProvider ->icon('book-open') ->collapsable(), - ], $comments, $adminItems, $permissions); + ], $adminItems, $permissions); }); Nova::withBreadcrumbs(); diff --git a/composer.json b/composer.json index 2f691514..ad4ecc25 100644 --- a/composer.json +++ b/composer.json @@ -47,8 +47,6 @@ "spatie/eloquent-sortable": "^4.0", "spatie/icalendar-generator": "^2.5", "spatie/laravel-ciphersweet": "^1.0", - "spatie/laravel-comments": "^1.4", - "spatie/laravel-comments-livewire": "^1.2", "spatie/laravel-feed": "^4.2", "spatie/laravel-google-fonts": "^1.2", "spatie/laravel-markdown": "^2.2", diff --git a/composer.lock b/composer.lock index 254398d0..bbe1d16d 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": "70c5fa8fde773985983d2761e278c402", + "content-hash": "db2e014f305793299b956c55446e25a6", "packages": [ { "name": "akuechler/laravel-geoly", @@ -293,31 +293,31 @@ }, { "name": "blade-ui-kit/blade-icons", - "version": "1.5.3", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/blade-ui-kit/blade-icons.git", - "reference": "b5e6603218e2347ac81cb780bc6f71c8c3b31f5b" + "reference": "8f787baf09d88cdfd6ec4dbaba11ebfa885f0595" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/b5e6603218e2347ac81cb780bc6f71c8c3b31f5b", - "reference": "b5e6603218e2347ac81cb780bc6f71c8c3b31f5b", + "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/8f787baf09d88cdfd6ec4dbaba11ebfa885f0595", + "reference": "8f787baf09d88cdfd6ec4dbaba11ebfa885f0595", "shasum": "" }, "require": { - "illuminate/contracts": "^8.0|^9.0|^10.0", - "illuminate/filesystem": "^8.0|^9.0|^10.0", - "illuminate/support": "^8.0|^9.0|^10.0", - "illuminate/view": "^8.0|^9.0|^10.0", + "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", "php": "^7.4|^8.0", - "symfony/console": "^5.3|^6.0", - "symfony/finder": "^5.3|^6.0" + "symfony/console": "^5.3|^6.0|^7.0", + "symfony/finder": "^5.3|^6.0|^7.0" }, "require-dev": { - "mockery/mockery": "^1.3", - "orchestra/testbench": "^6.0|^7.0|^8.0", - "phpunit/phpunit": "^9.0" + "mockery/mockery": "^1.5.1", + "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0", + "phpunit/phpunit": "^9.0|^10.5|^11.0" }, "bin": [ "bin/blade-icons-generate" @@ -370,7 +370,7 @@ "type": "paypal" } ], - "time": "2023-10-18T10:50:13+00:00" + "time": "2024-08-14T14:25:11+00:00" }, { "name": "brick/math", @@ -487,16 +487,16 @@ }, { "name": "carbonphp/carbon-doctrine-types", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", - "reference": "67a77972b9f398ae7068dabacc39c08aeee170d5" + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/67a77972b9f398ae7068dabacc39c08aeee170d5", - "reference": "67a77972b9f398ae7068dabacc39c08aeee170d5", + "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", "shasum": "" }, "require": { @@ -536,7 +536,7 @@ ], "support": { "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", - "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.0.0" + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0" }, "funding": [ { @@ -552,27 +552,27 @@ "type": "tidelift" } ], - "time": "2023-10-01T14:29:01+00:00" + "time": "2023-12-11T17:09:12+00:00" }, { "name": "clue/stream-filter", - "version": "v1.6.0", + "version": "v1.7.0", "source": { "type": "git", "url": "https://github.com/clue/stream-filter.git", - "reference": "d6169430c7731d8509da7aecd0af756a5747b78e" + "reference": "049509fef80032cb3f051595029ab75b49a3c2f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/clue/stream-filter/zipball/d6169430c7731d8509da7aecd0af756a5747b78e", - "reference": "d6169430c7731d8509da7aecd0af756a5747b78e", + "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7", + "reference": "049509fef80032cb3f051595029ab75b49a3c2f7", "shasum": "" }, "require": { "php": ">=5.3" }, "require-dev": { - "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36" + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" }, "type": "library", "autoload": { @@ -594,7 +594,7 @@ } ], "description": "A simple and modern approach to stream filtering in PHP", - "homepage": "https://github.com/clue/php-stream-filter", + "homepage": "https://github.com/clue/stream-filter", "keywords": [ "bucket brigade", "callback", @@ -606,7 +606,7 @@ ], "support": { "issues": "https://github.com/clue/stream-filter/issues", - "source": "https://github.com/clue/stream-filter/tree/v1.6.0" + "source": "https://github.com/clue/stream-filter/tree/v1.7.0" }, "funding": [ { @@ -618,20 +618,20 @@ "type": "github" } ], - "time": "2022-02-21T13:15:14+00:00" + "time": "2023-12-20T15:40:13+00:00" }, { "name": "composer/semver", - "version": "3.4.0", + "version": "3.4.2", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" + "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", - "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", + "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6", + "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6", "shasum": "" }, "require": { @@ -683,7 +683,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.4.0" + "source": "https://github.com/composer/semver/tree/3.4.2" }, "funding": [ { @@ -699,27 +699,27 @@ "type": "tidelift" } ], - "time": "2023-08-31T09:50:34+00:00" + "time": "2024-07-12T11:35:52+00:00" }, { "name": "dasprid/enum", - "version": "1.0.5", + "version": "1.0.6", "source": { "type": "git", "url": "https://github.com/DASPRiD/Enum.git", - "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016" + "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016", - "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016", + "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90", + "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90", "shasum": "" }, "require": { "php": ">=7.1 <9.0" }, "require-dev": { - "phpunit/phpunit": "^7 | ^8 | ^9", + "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11", "squizlabs/php_codesniffer": "*" }, "type": "library", @@ -747,22 +747,22 @@ ], "support": { "issues": "https://github.com/DASPRiD/Enum/issues", - "source": "https://github.com/DASPRiD/Enum/tree/1.0.5" + "source": "https://github.com/DASPRiD/Enum/tree/1.0.6" }, - "time": "2023-08-25T16:18:39+00:00" + "time": "2024-08-09T14:30:48+00:00" }, { "name": "dflydev/dot-access-data", - "version": "v3.0.2", + "version": "v3.0.3", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-dot-access-data.git", - "reference": "f41715465d65213d644d3141a6a93081be5d3549" + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", - "reference": "f41715465d65213d644d3141a6a93081be5d3549", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", "shasum": "" }, "require": { @@ -822,9 +822,9 @@ ], "support": { "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", - "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" }, - "time": "2022-10-27T11:44:00+00:00" + "time": "2024-07-08T12:26:09+00:00" }, { "name": "doctrine/cache", @@ -921,16 +921,16 @@ }, { "name": "doctrine/dbal", - "version": "3.7.2", + "version": "3.9.1", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "0ac3c270590e54910715e9a1a044cc368df282b2" + "reference": "d7dc08f98cba352b2bab5d32c5e58f7e745c11a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/0ac3c270590e54910715e9a1a044cc368df282b2", - "reference": "0ac3c270590e54910715e9a1a044cc368df282b2", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/d7dc08f98cba352b2bab5d32c5e58f7e745c11a7", + "reference": "d7dc08f98cba352b2bab5d32c5e58f7e745c11a7", "shasum": "" }, "require": { @@ -946,14 +946,14 @@ "doctrine/coding-standard": "12.0.0", "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2023.1", - "phpstan/phpstan": "1.10.42", - "phpstan/phpstan-strict-rules": "^1.5", - "phpunit/phpunit": "9.6.13", + "phpstan/phpstan": "1.12.0", + "phpstan/phpstan-strict-rules": "^1.6", + "phpunit/phpunit": "9.6.20", "psalm/plugin-phpunit": "0.18.4", "slevomat/coding-standard": "8.13.1", - "squizlabs/php_codesniffer": "3.7.2", - "symfony/cache": "^5.4|^6.0", - "symfony/console": "^4.4|^5.4|^6.0", + "squizlabs/php_codesniffer": "3.10.2", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/console": "^4.4|^5.4|^6.0|^7.0", "vimeo/psalm": "4.30.0" }, "suggest": { @@ -1014,7 +1014,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.7.2" + "source": "https://github.com/doctrine/dbal/tree/3.9.1" }, "funding": [ { @@ -1030,20 +1030,20 @@ "type": "tidelift" } ], - "time": "2023-11-19T08:06:58+00:00" + "time": "2024-09-01T13:49:23+00:00" }, { "name": "doctrine/deprecations", - "version": "1.1.2", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931" + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931", - "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", "shasum": "" }, "require": { @@ -1075,22 +1075,22 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/1.1.2" + "source": "https://github.com/doctrine/deprecations/tree/1.1.3" }, - "time": "2023-09-27T20:04:15+00:00" + "time": "2024-01-30T19:34:25+00:00" }, { "name": "doctrine/event-manager", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/doctrine/event-manager.git", - "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32" + "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32", - "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e", + "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e", "shasum": "" }, "require": { @@ -1100,10 +1100,10 @@ "doctrine/common": "<2.9" }, "require-dev": { - "doctrine/coding-standard": "^10", + "doctrine/coding-standard": "^12", "phpstan/phpstan": "^1.8.8", - "phpunit/phpunit": "^9.5", - "vimeo/psalm": "^4.28" + "phpunit/phpunit": "^10.5", + "vimeo/psalm": "^5.24" }, "type": "library", "autoload": { @@ -1152,7 +1152,7 @@ ], "support": { "issues": "https://github.com/doctrine/event-manager/issues", - "source": "https://github.com/doctrine/event-manager/tree/2.0.0" + "source": "https://github.com/doctrine/event-manager/tree/2.0.1" }, "funding": [ { @@ -1168,20 +1168,20 @@ "type": "tidelift" } ], - "time": "2022-10-12T20:59:15+00:00" + "time": "2024-05-22T20:47:39+00:00" }, { "name": "doctrine/inflector", - "version": "2.0.8", + "version": "2.0.10", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff" + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff", - "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", "shasum": "" }, "require": { @@ -1243,7 +1243,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.8" + "source": "https://github.com/doctrine/inflector/tree/2.0.10" }, "funding": [ { @@ -1259,31 +1259,31 @@ "type": "tidelift" } ], - "time": "2023-06-16T13:40:37+00:00" + "time": "2024-02-18T20:23:39+00:00" }, { "name": "doctrine/lexer", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "84a527db05647743d50373e0ec53a152f2cde568" + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568", - "reference": "84a527db05647743d50373e0ec53a152f2cde568", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", "shasum": "" }, "require": { "php": "^8.1" }, "require-dev": { - "doctrine/coding-standard": "^10", - "phpstan/phpstan": "^1.9", - "phpunit/phpunit": "^9.5", + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", "psalm/plugin-phpunit": "^0.18.3", - "vimeo/psalm": "^5.0" + "vimeo/psalm": "^5.21" }, "type": "library", "autoload": { @@ -1320,7 +1320,7 @@ ], "support": { "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/3.0.0" + "source": "https://github.com/doctrine/lexer/tree/3.0.1" }, "funding": [ { @@ -1336,7 +1336,7 @@ "type": "tidelift" } ], - "time": "2022-12-15T16:57:16+00:00" + "time": "2024-02-05T11:56:58+00:00" }, { "name": "dragonmantank/cron-expression", @@ -1700,6 +1700,69 @@ "abandoned": true, "time": "2022-12-19T11:08:26+00:00" }, + { + "name": "firebase/php-jwt", + "version": "v6.10.1", + "source": { + "type": "git", + "url": "https://github.com/firebase/php-jwt.git", + "reference": "500501c2ce893c824c801da135d02661199f60c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/500501c2ce893c824c801da135d02661199f60c5", + "reference": "500501c2ce893c824c801da135d02661199f60c5", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "guzzlehttp/guzzle": "^7.4", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.5", + "psr/cache": "^2.0||^3.0", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0" + }, + "suggest": { + "ext-sodium": "Support EdDSA (Ed25519) signatures", + "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present" + }, + "type": "library", + "autoload": { + "psr-4": { + "Firebase\\JWT\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Neuman Vong", + "email": "neuman+pear@twilio.com", + "role": "Developer" + }, + { + "name": "Anant Narayanan", + "email": "anant@php.net", + "role": "Developer" + } + ], + "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", + "homepage": "https://github.com/firebase/php-jwt", + "keywords": [ + "jwt", + "php" + ], + "support": { + "issues": "https://github.com/firebase/php-jwt/issues", + "source": "https://github.com/firebase/php-jwt/tree/v6.10.1" + }, + "time": "2024-05-18T18:05:11+00:00" + }, { "name": "fruitcake/php-cors", "version": "v1.3.0", @@ -1862,24 +1925,24 @@ }, { "name": "graham-campbell/result-type", - "version": "v1.1.2", + "version": "v1.1.3", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862" + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862", - "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.2" + "phpoption/phpoption": "^1.9.3" }, "require-dev": { - "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" }, "type": "library", "autoload": { @@ -1908,7 +1971,7 @@ ], "support": { "issues": "https://github.com/GrahamCampbell/Result-Type/issues", - "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2" + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" }, "funding": [ { @@ -1920,26 +1983,26 @@ "type": "tidelift" } ], - "time": "2023-11-12T22:16:48+00:00" + "time": "2024-07-20T21:45:45+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "7.8.1", + "version": "7.9.2", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "41042bc7ab002487b876a0683fc8dce04ddce104" + "reference": "d281ed313b989f213357e3be1a179f02196ac99b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104", - "reference": "41042bc7ab002487b876a0683fc8dce04ddce104", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0.1", - "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", + "guzzlehttp/promises": "^1.5.3 || ^2.0.3", + "guzzlehttp/psr7": "^2.7.0", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -1950,9 +2013,9 @@ "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", "ext-curl": "*", - "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", + "guzzle/client-integration-tests": "3.0.2", "php-http/message-factory": "^1.1", - "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "phpunit/phpunit": "^8.5.39 || ^9.6.20", "psr/log": "^1.1 || ^2.0 || ^3.0" }, "suggest": { @@ -2030,7 +2093,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.8.1" + "source": "https://github.com/guzzle/guzzle/tree/7.9.2" }, "funding": [ { @@ -2046,20 +2109,20 @@ "type": "tidelift" } ], - "time": "2023-12-03T20:35:24+00:00" + "time": "2024-07-24T11:22:20+00:00" }, { "name": "guzzlehttp/promises", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223" + "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", - "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", + "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", + "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", "shasum": "" }, "require": { @@ -2067,7 +2130,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.36 || ^9.6.15" + "phpunit/phpunit": "^8.5.39 || ^9.6.20" }, "type": "library", "extra": { @@ -2113,7 +2176,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.0.2" + "source": "https://github.com/guzzle/promises/tree/2.0.3" }, "funding": [ { @@ -2129,20 +2192,20 @@ "type": "tidelift" } ], - "time": "2023-12-03T20:19:20+00:00" + "time": "2024-07-18T10:29:17+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.6.2", + "version": "2.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221" + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221", - "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201", "shasum": "" }, "require": { @@ -2157,8 +2220,8 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "http-interop/http-factory-tests": "^0.9", - "phpunit/phpunit": "^8.5.36 || ^9.6.15" + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -2229,7 +2292,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.6.2" + "source": "https://github.com/guzzle/psr7/tree/2.7.0" }, "funding": [ { @@ -2245,7 +2308,7 @@ "type": "tidelift" } ], - "time": "2023-12-03T20:05:35+00:00" + "time": "2024-07-18T11:15:46+00:00" }, { "name": "guzzlehttp/uri-template", @@ -2659,16 +2722,16 @@ }, { "name": "jaybizzle/crawler-detect", - "version": "v1.2.116", + "version": "v1.2.119", "source": { "type": "git", "url": "https://github.com/JayBizzle/Crawler-Detect.git", - "reference": "97e9fe30219e60092e107651abb379a38b342921" + "reference": "275002e22b0333c15a7c6792fdae5d5deefc9ef0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/97e9fe30219e60092e107651abb379a38b342921", - "reference": "97e9fe30219e60092e107651abb379a38b342921", + "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/275002e22b0333c15a7c6792fdae5d5deefc9ef0", + "reference": "275002e22b0333c15a7c6792fdae5d5deefc9ef0", "shasum": "" }, "require": { @@ -2705,22 +2768,22 @@ ], "support": { "issues": "https://github.com/JayBizzle/Crawler-Detect/issues", - "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.116" + "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.119" }, - "time": "2023-07-21T15:49:49+00:00" + "time": "2024-06-07T07:58:43+00:00" }, { "name": "jean85/pretty-package-versions", - "version": "2.0.5", + "version": "2.0.6", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af" + "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af", - "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4", + "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4", "shasum": "" }, "require": { @@ -2728,9 +2791,9 @@ "php": "^7.1|^8.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.17", + "friendsofphp/php-cs-fixer": "^3.2", "jean85/composer-provided-replaced-stub-package": "^1.0", - "phpstan/phpstan": "^0.12.66", + "phpstan/phpstan": "^1.4", "phpunit/phpunit": "^7.5|^8.5|^9.4", "vimeo/psalm": "^4.3" }, @@ -2764,9 +2827,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6" }, - "time": "2021-10-08T21:21:46+00:00" + "time": "2024-03-08T09:58:59+00:00" }, { "name": "jenssegers/agent", @@ -2963,30 +3026,31 @@ }, { "name": "laravel/fortify", - "version": "v1.19.0", + "version": "v1.21.1", "source": { "type": "git", "url": "https://github.com/laravel/fortify.git", - "reference": "2da721fead1f3bc18af983e4903c4e1df67177e7" + "reference": "405388fd399264715573e23ed2f368fbce426da3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/fortify/zipball/2da721fead1f3bc18af983e4903c4e1df67177e7", - "reference": "2da721fead1f3bc18af983e4903c4e1df67177e7", + "url": "https://api.github.com/repos/laravel/fortify/zipball/405388fd399264715573e23ed2f368fbce426da3", + "reference": "405388fd399264715573e23ed2f368fbce426da3", "shasum": "" }, "require": { "bacon/bacon-qr-code": "^2.0", "ext-json": "*", - "illuminate/support": "^8.82|^9.0|^10.0", - "php": "^7.3|^8.0", - "pragmarx/google2fa": "^7.0|^8.0" + "illuminate/support": "^10.0|^11.0", + "php": "^8.1", + "pragmarx/google2fa": "^8.0", + "symfony/console": "^6.0|^7.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^6.34|^7.31|^8.11", + "orchestra/testbench": "^8.16|^9.0", "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.4" }, "type": "library", "extra": { @@ -3023,24 +3087,24 @@ "issues": "https://github.com/laravel/fortify/issues", "source": "https://github.com/laravel/fortify" }, - "time": "2023-11-27T22:01:18+00:00" + "time": "2024-03-19T20:08:25+00:00" }, { "name": "laravel/framework", - "version": "v10.35.0", + "version": "v10.48.20", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "91ec2d92d2f6007e9084fe06438b99c91845da69" + "reference": "be2be342d4c74db6a8d2bd18469cd6d488ab9c98" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/91ec2d92d2f6007e9084fe06438b99c91845da69", - "reference": "91ec2d92d2f6007e9084fe06438b99c91845da69", + "url": "https://api.github.com/repos/laravel/framework/zipball/be2be342d4c74db6a8d2bd18469cd6d488ab9c98", + "reference": "be2be342d4c74db6a8d2bd18469cd6d488ab9c98", "shasum": "" }, "require": { - "brick/math": "^0.9.3|^0.10.2|^0.11", + "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", "composer-runtime-api": "^2.2", "doctrine/inflector": "^2.0.5", "dragonmantank/cron-expression": "^3.3.2", @@ -3082,6 +3146,10 @@ "voku/portable-ascii": "^2.0" }, "conflict": { + "carbonphp/carbon-doctrine-types": ">=3.0", + "doctrine/dbal": ">=4.0", + "mockery/mockery": "1.6.8", + "phpunit/phpunit": ">=11.0.0", "tightenco/collect": "<5.5.33" }, "provide": { @@ -3137,7 +3205,7 @@ "league/flysystem-sftp-v3": "^3.0", "mockery/mockery": "^1.5.1", "nyholm/psr7": "^1.2", - "orchestra/testbench-core": "^8.15.1", + "orchestra/testbench-core": "^8.23.4", "pda/pheanstalk": "^4.0", "phpstan/phpstan": "^1.4.7", "phpunit/phpunit": "^10.0.7", @@ -3193,6 +3261,7 @@ "files": [ "src/Illuminate/Collections/helpers.php", "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", "src/Illuminate/Foundation/helpers.php", "src/Illuminate/Support/helpers.php" ], @@ -3225,40 +3294,41 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2023-12-05T14:50:33+00:00" + "time": "2024-08-09T07:55:45+00:00" }, { "name": "laravel/horizon", - "version": "v5.21.4", + "version": "v5.28.1", "source": { "type": "git", "url": "https://github.com/laravel/horizon.git", - "reference": "bdf58c84b592b83f62262cc6ca98b0debbbc308b" + "reference": "9d2c4eaeb11408384401f8a7d1b0ea4c76554f3f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/horizon/zipball/bdf58c84b592b83f62262cc6ca98b0debbbc308b", - "reference": "bdf58c84b592b83f62262cc6ca98b0debbbc308b", + "url": "https://api.github.com/repos/laravel/horizon/zipball/9d2c4eaeb11408384401f8a7d1b0ea4c76554f3f", + "reference": "9d2c4eaeb11408384401f8a7d1b0ea4c76554f3f", "shasum": "" }, "require": { "ext-json": "*", "ext-pcntl": "*", "ext-posix": "*", - "illuminate/contracts": "^8.17|^9.0|^10.0", - "illuminate/queue": "^8.17|^9.0|^10.0", - "illuminate/support": "^8.17|^9.0|^10.0", - "nesbot/carbon": "^2.17", - "php": "^7.3|^8.0", + "illuminate/contracts": "^9.21|^10.0|^11.0", + "illuminate/queue": "^9.21|^10.0|^11.0", + "illuminate/support": "^9.21|^10.0|^11.0", + "nesbot/carbon": "^2.17|^3.0", + "php": "^8.0", "ramsey/uuid": "^4.0", - "symfony/error-handler": "^5.0|^6.0", - "symfony/process": "^5.0|^6.0" + "symfony/console": "^6.0|^7.0", + "symfony/error-handler": "^6.0|^7.0", + "symfony/process": "^6.0|^7.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^6.0|^7.0|^8.0", + "orchestra/testbench": "^7.0|^8.0|^9.0", "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^9.0", + "phpunit/phpunit": "^9.0|^10.4", "predis/predis": "^1.1|^2.0" }, "suggest": { @@ -3301,9 +3371,9 @@ ], "support": { "issues": "https://github.com/laravel/horizon/issues", - "source": "https://github.com/laravel/horizon/tree/v5.21.4" + "source": "https://github.com/laravel/horizon/tree/v5.28.1" }, - "time": "2023-11-23T15:47:58+00:00" + "time": "2024-09-04T14:06:50+00:00" }, { "name": "laravel/jetstream", @@ -3377,22 +3447,22 @@ }, { "name": "laravel/legacy-factories", - "version": "v1.3.2", + "version": "v1.4.0", "source": { "type": "git", "url": "https://github.com/laravel/legacy-factories.git", - "reference": "cc6720da81094c82ea9f4737d615dd3d71f7f43d" + "reference": "6cb79f668fc36b8b396ada1da3ba45867889c30f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/legacy-factories/zipball/cc6720da81094c82ea9f4737d615dd3d71f7f43d", - "reference": "cc6720da81094c82ea9f4737d615dd3d71f7f43d", + "url": "https://api.github.com/repos/laravel/legacy-factories/zipball/6cb79f668fc36b8b396ada1da3ba45867889c30f", + "reference": "6cb79f668fc36b8b396ada1da3ba45867889c30f", "shasum": "" }, "require": { - "illuminate/macroable": "^8.0|^9.0|^10.0", + "illuminate/macroable": "^8.0|^9.0|^10.0|^11.0", "php": "^7.3|^8.0", - "symfony/finder": "^3.4|^4.0|^5.0|^6.0" + "symfony/finder": "^3.4|^4.0|^5.0|^6.0|^7.0" }, "type": "library", "extra": { @@ -3429,7 +3499,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2023-01-09T14:49:00+00:00" + "time": "2024-01-15T13:55:14+00:00" }, { "name": "laravel/nova", @@ -3542,16 +3612,16 @@ }, { "name": "laravel/prompts", - "version": "v0.1.13", + "version": "v0.1.25", "source": { "type": "git", "url": "https://github.com/laravel/prompts.git", - "reference": "e1379d8ead15edd6cc4369c22274345982edc95a" + "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/prompts/zipball/e1379d8ead15edd6cc4369c22274345982edc95a", - "reference": "e1379d8ead15edd6cc4369c22274345982edc95a", + "url": "https://api.github.com/repos/laravel/prompts/zipball/7b4029a84c37cb2725fc7f011586e2997040bc95", + "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95", "shasum": "" }, "require": { @@ -3567,7 +3637,7 @@ "require-dev": { "mockery/mockery": "^1.5", "pestphp/pest": "^2.3", - "phpstan/phpstan": "^1.10", + "phpstan/phpstan": "^1.11", "phpstan/phpstan-mockery": "^1.1" }, "suggest": { @@ -3591,24 +3661,25 @@ "license": [ "MIT" ], + "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.1.13" + "source": "https://github.com/laravel/prompts/tree/v0.1.25" }, - "time": "2023-10-27T13:53:59+00:00" + "time": "2024-08-12T22:06:33+00:00" }, { "name": "laravel/sanctum", - "version": "v3.3.2", + "version": "v3.3.3", "source": { "type": "git", "url": "https://github.com/laravel/sanctum.git", - "reference": "e1a272893bec13cf135627f7e156030b3afe1e60" + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sanctum/zipball/e1a272893bec13cf135627f7e156030b3afe1e60", - "reference": "e1a272893bec13cf135627f7e156030b3afe1e60", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/8c104366459739f3ada0e994bcd3e6fd681ce3d5", + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5", "shasum": "" }, "require": { @@ -3661,30 +3732,31 @@ "issues": "https://github.com/laravel/sanctum/issues", "source": "https://github.com/laravel/sanctum" }, - "time": "2023-11-03T13:42:14+00:00" + "time": "2023-12-19T18:44:48+00:00" }, { "name": "laravel/serializable-closure", - "version": "v1.3.3", + "version": "v1.3.4", "source": { "type": "git", "url": "https://github.com/laravel/serializable-closure.git", - "reference": "3dbf8a8e914634c48d389c1234552666b3d43754" + "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754", - "reference": "3dbf8a8e914634c48d389c1234552666b3d43754", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/61b87392d986dc49ad5ef64e75b1ff5fee24ef81", + "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81", "shasum": "" }, "require": { "php": "^7.3|^8.0" }, "require-dev": { - "nesbot/carbon": "^2.61", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", + "nesbot/carbon": "^2.61|^3.0", "pestphp/pest": "^1.21.3", "phpstan/phpstan": "^1.8.2", - "symfony/var-dumper": "^5.4.11" + "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0" }, "type": "library", "extra": { @@ -3721,30 +3793,32 @@ "issues": "https://github.com/laravel/serializable-closure/issues", "source": "https://github.com/laravel/serializable-closure" }, - "time": "2023-11-08T14:08:06+00:00" + "time": "2024-08-02T07:48:17+00:00" }, { "name": "laravel/socialite", - "version": "v5.11.0", + "version": "v5.16.0", "source": { "type": "git", "url": "https://github.com/laravel/socialite.git", - "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10" + "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/socialite/zipball/4f6a8af6f3f7c18da03d19842dd0514315501c10", - "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10", + "url": "https://api.github.com/repos/laravel/socialite/zipball/40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf", + "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf", "shasum": "" }, "require": { "ext-json": "*", + "firebase/php-jwt": "^6.4", "guzzlehttp/guzzle": "^6.0|^7.0", "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "illuminate/http": "^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", "league/oauth1-client": "^1.10.1", - "php": "^7.2|^8.0" + "php": "^7.2|^8.0", + "phpseclib/phpseclib": "^3.0" }, "require-dev": { "mockery/mockery": "^1.0", @@ -3791,29 +3865,29 @@ "issues": "https://github.com/laravel/socialite/issues", "source": "https://github.com/laravel/socialite" }, - "time": "2023-12-02T18:22:36+00:00" + "time": "2024-09-03T09:46:57+00:00" }, { "name": "laravel/tinker", - "version": "v2.8.2", + "version": "v2.9.0", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3" + "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3", - "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3", + "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe", + "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe", "shasum": "" }, "require": { - "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", - "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", + "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", "php": "^7.2.5|^8.0", - "psy/psysh": "^0.10.4|^0.11.1", - "symfony/var-dumper": "^4.3.4|^5.0|^6.0" + "psy/psysh": "^0.11.1|^0.12.0", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" }, "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", @@ -3821,13 +3895,10 @@ "phpunit/phpunit": "^8.5.8|^9.3.3" }, "suggest": { - "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)." + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)." }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - }, "laravel": { "providers": [ "Laravel\\Tinker\\TinkerServiceProvider" @@ -3858,34 +3929,35 @@ ], "support": { "issues": "https://github.com/laravel/tinker/issues", - "source": "https://github.com/laravel/tinker/tree/v2.8.2" + "source": "https://github.com/laravel/tinker/tree/v2.9.0" }, - "time": "2023-08-15T14:27:00+00:00" + "time": "2024-01-04T16:10:04+00:00" }, { "name": "laravel/ui", - "version": "v4.2.3", + "version": "v4.5.2", "source": { "type": "git", "url": "https://github.com/laravel/ui.git", - "reference": "eb532ea096ca1c0298c87c19233daf011fda743a" + "reference": "c75396f63268c95b053c8e4814eb70e0875e9628" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/ui/zipball/eb532ea096ca1c0298c87c19233daf011fda743a", - "reference": "eb532ea096ca1c0298c87c19233daf011fda743a", + "url": "https://api.github.com/repos/laravel/ui/zipball/c75396f63268c95b053c8e4814eb70e0875e9628", + "reference": "c75396f63268c95b053c8e4814eb70e0875e9628", "shasum": "" }, "require": { - "illuminate/console": "^9.21|^10.0", - "illuminate/filesystem": "^9.21|^10.0", - "illuminate/support": "^9.21|^10.0", - "illuminate/validation": "^9.21|^10.0", - "php": "^8.0" + "illuminate/console": "^9.21|^10.0|^11.0", + "illuminate/filesystem": "^9.21|^10.0|^11.0", + "illuminate/support": "^9.21|^10.0|^11.0", + "illuminate/validation": "^9.21|^10.0|^11.0", + "php": "^8.0", + "symfony/console": "^6.0|^7.0" }, "require-dev": { - "orchestra/testbench": "^7.0|^8.0", - "phpunit/phpunit": "^9.3" + "orchestra/testbench": "^7.35|^8.15|^9.0", + "phpunit/phpunit": "^9.3|^10.4|^11.0" }, "type": "library", "extra": { @@ -3920,22 +3992,22 @@ "ui" ], "support": { - "source": "https://github.com/laravel/ui/tree/v4.2.3" + "source": "https://github.com/laravel/ui/tree/v4.5.2" }, - "time": "2023-11-23T14:44:22+00:00" + "time": "2024-05-08T18:07:10+00:00" }, { "name": "league/commonmark", - "version": "2.4.1", + "version": "2.5.3", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5" + "reference": "b650144166dfa7703e62a22e493b853b58d874b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5", - "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0", + "reference": "b650144166dfa7703e62a22e493b853b58d874b0", "shasum": "" }, "require": { @@ -3948,8 +4020,8 @@ }, "require-dev": { "cebe/markdown": "^1.0", - "commonmark/cmark": "0.30.0", - "commonmark/commonmark.js": "0.30.0", + "commonmark/cmark": "0.31.1", + "commonmark/commonmark.js": "0.31.1", "composer/package-versions-deprecated": "^1.8", "embed/embed": "^4.4", "erusev/parsedown": "^1.0", @@ -3958,10 +4030,10 @@ "michelf/php-markdown": "^1.4 || ^2.0", "nyholm/psr7": "^1.5", "phpstan/phpstan": "^1.8.2", - "phpunit/phpunit": "^9.5.21", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", "scrutinizer/ocular": "^1.8.1", - "symfony/finder": "^5.3 | ^6.0", - "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", + "symfony/finder": "^5.3 | ^6.0 || ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0", "unleashedtech/php-coding-standard": "^3.1.1", "vimeo/psalm": "^4.24.0 || ^5.0.0" }, @@ -3971,7 +4043,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.5-dev" + "dev-main": "2.6-dev" } }, "autoload": { @@ -4028,7 +4100,7 @@ "type": "tidelift" } ], - "time": "2023-08-30T16:55:00+00:00" + "time": "2024-08-16T11:46:16+00:00" }, { "name": "league/config", @@ -4114,16 +4186,16 @@ }, { "name": "league/flysystem", - "version": "3.23.0", + "version": "3.28.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "d4ad81e2b67396e33dc9d7e54ec74ccf73151dcc" + "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/d4ad81e2b67396e33dc9d7e54ec74ccf73151dcc", - "reference": "d4ad81e2b67396e33dc9d7e54ec74ccf73151dcc", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c", + "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c", "shasum": "" }, "require": { @@ -4143,18 +4215,21 @@ "require-dev": { "async-aws/s3": "^1.5 || ^2.0", "async-aws/simple-s3": "^1.1 || ^2.0", - "aws/aws-sdk-php": "^3.220.0", + "aws/aws-sdk-php": "^3.295.10", "composer/semver": "^3.0", "ext-fileinfo": "*", "ext-ftp": "*", + "ext-mongodb": "^1.3", "ext-zip": "*", "friendsofphp/php-cs-fixer": "^3.5", "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", "microsoft/azure-storage-blob": "^1.1", - "phpseclib/phpseclib": "^3.0.34", + "mongodb/mongodb": "^1.2", + "phpseclib/phpseclib": "^3.0.36", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5.11|^10.0", - "sabre/dav": "^4.3.1" + "sabre/dav": "^4.6.0" }, "type": "library", "autoload": { @@ -4188,32 +4263,22 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.23.0" + "source": "https://github.com/thephpleague/flysystem/tree/3.28.0" }, - "funding": [ - { - "url": "https://ecologi.com/frankdejonge", - "type": "custom" - }, - { - "url": "https://github.com/frankdejonge", - "type": "github" - } - ], - "time": "2023-12-04T10:16:17+00:00" + "time": "2024-05-22T10:09:12+00:00" }, { "name": "league/flysystem-local", - "version": "3.23.0", + "version": "3.28.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-local.git", - "reference": "5cf046ba5f059460e86a997c504dd781a39a109b" + "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/5cf046ba5f059460e86a997c504dd781a39a109b", - "reference": "5cf046ba5f059460e86a997c504dd781a39a109b", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/13f22ea8be526ea58c2ddff9e158ef7c296e4f40", + "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40", "shasum": "" }, "require": { @@ -4247,20 +4312,9 @@ "local" ], "support": { - "issues": "https://github.com/thephpleague/flysystem-local/issues", - "source": "https://github.com/thephpleague/flysystem-local/tree/3.23.0" + "source": "https://github.com/thephpleague/flysystem-local/tree/3.28.0" }, - "funding": [ - { - "url": "https://ecologi.com/frankdejonge", - "type": "custom" - }, - { - "url": "https://github.com/frankdejonge", - "type": "github" - } - ], - "time": "2023-12-04T10:14:46+00:00" + "time": "2024-05-06T20:05:52+00:00" }, { "name": "league/glide", @@ -4422,16 +4476,16 @@ }, { "name": "league/mime-type-detection", - "version": "1.14.0", + "version": "1.15.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "b6a5854368533df0295c5761a0253656a2e52d9e" + "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e", - "reference": "b6a5854368533df0295c5761a0253656a2e52d9e", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", + "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", "shasum": "" }, "require": { @@ -4462,7 +4516,7 @@ "description": "Mime-type detection for Flysystem", "support": { "issues": "https://github.com/thephpleague/mime-type-detection/issues", - "source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0" + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0" }, "funding": [ { @@ -4474,7 +4528,7 @@ "type": "tidelift" } ], - "time": "2023-10-17T14:13:20+00:00" + "time": "2024-01-28T23:22:08+00:00" }, { "name": "league/oauth1-client", @@ -4552,192 +4606,18 @@ }, "time": "2022-04-15T14:02:14+00:00" }, - { - "name": "league/uri", - "version": "7.4.0", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/uri.git", - "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri/zipball/bf414ba956d902f5d98bf9385fcf63954f09dce5", - "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5", - "shasum": "" - }, - "require": { - "league/uri-interfaces": "^7.3", - "php": "^8.1" - }, - "conflict": { - "league/uri-schemes": "^1.0" - }, - "suggest": { - "ext-bcmath": "to improve IPV4 host parsing", - "ext-fileinfo": "to create Data URI from file contennts", - "ext-gmp": "to improve IPV4 host parsing", - "ext-intl": "to handle IDN host with the best performance", - "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain", - "league/uri-components": "Needed to easily manipulate URI objects components", - "php-64bit": "to improve IPV4 host parsing", - "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "7.x-dev" - } - }, - "autoload": { - "psr-4": { - "League\\Uri\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ignace Nyamagana Butera", - "email": "nyamsprod@gmail.com", - "homepage": "https://nyamsprod.com" - } - ], - "description": "URI manipulation library", - "homepage": "https://uri.thephpleague.com", - "keywords": [ - "data-uri", - "file-uri", - "ftp", - "hostname", - "http", - "https", - "middleware", - "parse_str", - "parse_url", - "psr-7", - "query-string", - "querystring", - "rfc3986", - "rfc3987", - "rfc6570", - "uri", - "uri-template", - "url", - "ws" - ], - "support": { - "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" - }, - "funding": [ - { - "url": "https://github.com/sponsors/nyamsprod", - "type": "github" - } - ], - "time": "2023-12-01T06:24:25+00:00" - }, - { - "name": "league/uri-interfaces", - "version": "7.4.0", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/uri-interfaces.git", - "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/bd8c487ec236930f7bbc42b8d374fa882fbba0f3", - "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3", - "shasum": "" - }, - "require": { - "ext-filter": "*", - "php": "^8.1", - "psr/http-factory": "^1", - "psr/http-message": "^1.1 || ^2.0" - }, - "suggest": { - "ext-bcmath": "to improve IPV4 host parsing", - "ext-gmp": "to improve IPV4 host parsing", - "ext-intl": "to handle IDN host with the best performance", - "php-64bit": "to improve IPV4 host parsing", - "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "7.x-dev" - } - }, - "autoload": { - "psr-4": { - "League\\Uri\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ignace Nyamagana Butera", - "email": "nyamsprod@gmail.com", - "homepage": "https://nyamsprod.com" - } - ], - "description": "Common interfaces and classes for URI representation and interaction", - "homepage": "https://uri.thephpleague.com", - "keywords": [ - "data-uri", - "file-uri", - "ftp", - "hostname", - "http", - "https", - "parse_str", - "parse_url", - "psr-7", - "query-string", - "querystring", - "rfc3986", - "rfc3987", - "rfc6570", - "uri", - "url", - "ws" - ], - "support": { - "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" - }, - "funding": [ - { - "url": "https://github.com/sponsors/nyamsprod", - "type": "github" - } - ], - "time": "2023-11-24T15:40:42+00:00" - }, { "name": "livewire/livewire", - "version": "v2.12.6", + "version": "v2.12.8", "source": { "type": "git", "url": "https://github.com/livewire/livewire.git", - "reference": "7d3a57b3193299cf1a0639a3935c696f4da2cf92" + "reference": "7d657d0dd8761a981f7ac3cd8d71c3b724f3e0b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/livewire/livewire/zipball/7d3a57b3193299cf1a0639a3935c696f4da2cf92", - "reference": "7d3a57b3193299cf1a0639a3935c696f4da2cf92", + "url": "https://api.github.com/repos/livewire/livewire/zipball/7d657d0dd8761a981f7ac3cd8d71c3b724f3e0b8", + "reference": "7d657d0dd8761a981f7ac3cd8d71c3b724f3e0b8", "shasum": "" }, "require": { @@ -4789,7 +4669,7 @@ "description": "A front-end framework for Laravel.", "support": { "issues": "https://github.com/livewire/livewire/issues", - "source": "https://github.com/livewire/livewire/tree/v2.12.6" + "source": "https://github.com/livewire/livewire/tree/v2.12.8" }, "funding": [ { @@ -4797,32 +4677,33 @@ "type": "github" } ], - "time": "2023-08-11T04:02:34+00:00" + "time": "2024-07-13T19:58:46+00:00" }, { "name": "maatwebsite/excel", - "version": "3.1.50", + "version": "3.1.58", "source": { "type": "git", "url": "https://github.com/SpartnerNL/Laravel-Excel.git", - "reference": "d79e66391aa306983bb7e234503f5605c3e33348" + "reference": "18495a71b112f43af8ffab35111a58b4e4ba4a4d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/d79e66391aa306983bb7e234503f5605c3e33348", - "reference": "d79e66391aa306983bb7e234503f5605c3e33348", + "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/18495a71b112f43af8ffab35111a58b4e4ba4a4d", + "reference": "18495a71b112f43af8ffab35111a58b4e4ba4a4d", "shasum": "" }, "require": { "composer/semver": "^3.3", "ext-json": "*", - "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0", + "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0", "php": "^7.0||^8.0", - "phpoffice/phpspreadsheet": "^1.18", + "phpoffice/phpspreadsheet": "^1.29.1", "psr/simple-cache": "^1.0||^2.0||^3.0" }, "require-dev": { - "orchestra/testbench": "^6.0||^7.0||^8.0", + "laravel/scout": "^7.0||^8.0||^9.0||^10.0", + "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0", "predis/predis": "^1.1" }, "type": "library", @@ -4865,7 +4746,7 @@ ], "support": { "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues", - "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.50" + "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.58" }, "funding": [ { @@ -4877,7 +4758,7 @@ "type": "github" } ], - "time": "2023-11-06T11:29:48+00:00" + "time": "2024-09-07T13:53:36+00:00" }, { "name": "maennchen/zipstream-php", @@ -5067,73 +4948,6 @@ }, "time": "2022-12-02T22:17:43+00:00" }, - { - "name": "masterminds/html5", - "version": "2.8.1", - "source": { - "type": "git", - "url": "https://github.com/Masterminds/html5-php.git", - "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf", - "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "php": ">=5.3.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.7-dev" - } - }, - "autoload": { - "psr-4": { - "Masterminds\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Matt Butcher", - "email": "technosophos@gmail.com" - }, - { - "name": "Matt Farina", - "email": "matt@mattfarina.com" - }, - { - "name": "Asmir Mustafic", - "email": "goetas@gmail.com" - } - ], - "description": "An HTML5 parser and serializer.", - "homepage": "http://masterminds.github.io/html5-php", - "keywords": [ - "HTML5", - "dom", - "html", - "parser", - "querypath", - "serializer", - "xml" - ], - "support": { - "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.8.1" - }, - "time": "2023-05-10T11:58:31+00:00" - }, { "name": "mdanter/ecc", "version": "v1.0.0", @@ -5208,6 +5022,7 @@ "issues": "https://github.com/phpecc/phpecc/issues", "source": "https://github.com/phpecc/phpecc/tree/v1.0.0" }, + "abandoned": "paragonie/ecc", "time": "2021-01-16T19:42:14+00:00" }, { @@ -5274,16 +5089,16 @@ }, { "name": "monolog/monolog", - "version": "3.5.0", + "version": "3.7.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448" + "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448", - "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8", + "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8", "shasum": "" }, "require": { @@ -5306,7 +5121,7 @@ "phpstan/phpstan": "^1.9", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-strict-rules": "^1.4", - "phpunit/phpunit": "^10.1", + "phpunit/phpunit": "^10.5.17", "predis/predis": "^1.1 || ^2", "ruflin/elastica": "^7", "symfony/mailer": "^5.4 || ^6", @@ -5359,7 +5174,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/3.5.0" + "source": "https://github.com/Seldaek/monolog/tree/3.7.0" }, "funding": [ { @@ -5371,20 +5186,20 @@ "type": "tidelift" } ], - "time": "2023-10-27T15:32:31+00:00" + "time": "2024-06-28T09:40:51+00:00" }, { "name": "nesbot/carbon", - "version": "2.72.0", + "version": "2.72.5", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "a6885fcbad2ec4360b0e200ee0da7d9b7c90786b" + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/a6885fcbad2ec4360b0e200ee0da7d9b7c90786b", - "reference": "a6885fcbad2ec4360b0e200ee0da7d9b7c90786b", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed", + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed", "shasum": "" }, "require": { @@ -5418,8 +5233,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev", - "dev-master": "2.x-dev" + "dev-master": "3.x-dev", + "dev-2.x": "2.x-dev" }, "laravel": { "providers": [ @@ -5478,35 +5293,35 @@ "type": "tidelift" } ], - "time": "2023-11-28T10:13:25+00:00" + "time": "2024-06-03T19:18:41+00:00" }, { "name": "nette/schema", - "version": "v1.2.5", + "version": "v1.3.0", "source": { "type": "git", "url": "https://github.com/nette/schema.git", - "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a" + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a", - "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a", + "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", "shasum": "" }, "require": { - "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", - "php": "7.1 - 8.3" + "nette/utils": "^4.0", + "php": "8.1 - 8.3" }, "require-dev": { - "nette/tester": "^2.3 || ^2.4", + "nette/tester": "^2.4", "phpstan/phpstan-nette": "^1.0", - "tracy/tracy": "^2.7" + "tracy/tracy": "^2.8" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2-dev" + "dev-master": "1.3-dev" } }, "autoload": { @@ -5538,26 +5353,26 @@ ], "support": { "issues": "https://github.com/nette/schema/issues", - "source": "https://github.com/nette/schema/tree/v1.2.5" + "source": "https://github.com/nette/schema/tree/v1.3.0" }, - "time": "2023-10-05T20:37:59+00:00" + "time": "2023-12-11T11:54:22+00:00" }, { "name": "nette/utils", - "version": "v4.0.3", + "version": "v4.0.5", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015" + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/a9d127dd6a203ce6d255b2e2db49759f7506e015", - "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015", + "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", "shasum": "" }, "require": { - "php": ">=8.0 <8.4" + "php": "8.0 - 8.4" }, "conflict": { "nette/finder": "<3", @@ -5624,31 +5439,33 @@ ], "support": { "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v4.0.3" + "source": "https://github.com/nette/utils/tree/v4.0.5" }, - "time": "2023-10-29T21:02:13+00:00" + "time": "2024-08-07T15:39:19+00:00" }, { "name": "nikic/php-parser", - "version": "v4.17.1", + "version": "v5.1.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d" + "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", - "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1", + "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1", "shasum": "" }, "require": { + "ext-ctype": "*", + "ext-json": "*", "ext-tokenizer": "*", - "php": ">=7.0" + "php": ">=7.4" }, "require-dev": { "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + "phpunit/phpunit": "^9.0" }, "bin": [ "bin/php-parse" @@ -5656,7 +5473,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.9-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -5680,9 +5497,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0" }, - "time": "2023-08-13T19:53:39+00:00" + "time": "2024-07-01T20:03:41+00:00" }, { "name": "nova-kit/nova-packages-tool", @@ -6175,16 +5992,16 @@ }, { "name": "openspout/openspout", - "version": "v4.22.0", + "version": "v4.24.5", "source": { "type": "git", "url": "https://github.com/openspout/openspout.git", - "reference": "ad3dd535cf01623551da401fe170355f56f4f929" + "reference": "393299ae21153f042f48b185f2adeb4b157d1d93" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/openspout/openspout/zipball/ad3dd535cf01623551da401fe170355f56f4f929", - "reference": "ad3dd535cf01623551da401fe170355f56f4f929", + "url": "https://api.github.com/repos/openspout/openspout/zipball/393299ae21153f042f48b185f2adeb4b157d1d93", + "reference": "393299ae21153f042f48b185f2adeb4b157d1d93", "shasum": "" }, "require": { @@ -6198,13 +6015,13 @@ }, "require-dev": { "ext-zlib": "*", - "friendsofphp/php-cs-fixer": "^3.39.0", - "infection/infection": "^0.27.8", - "phpbench/phpbench": "^1.2.14", - "phpstan/phpstan": "^1.10.44", - "phpstan/phpstan-phpunit": "^1.3.15", - "phpstan/phpstan-strict-rules": "^1.5.2", - "phpunit/phpunit": "^10.4.2" + "friendsofphp/php-cs-fixer": "^3.60.0", + "infection/infection": "^0.29.6", + "phpbench/phpbench": "^1.3.1", + "phpstan/phpstan": "^1.11.8", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.0", + "phpunit/phpunit": "^10.5.20 || ^11.2.8" }, "suggest": { "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)", @@ -6252,7 +6069,7 @@ ], "support": { "issues": "https://github.com/openspout/openspout/issues", - "source": "https://github.com/openspout/openspout/tree/v4.22.0" + "source": "https://github.com/openspout/openspout/tree/v4.24.5" }, "funding": [ { @@ -6264,27 +6081,27 @@ "type": "github" } ], - "time": "2023-11-22T15:34:18+00:00" + "time": "2024-07-26T05:48:04+00:00" }, { "name": "paragonie/ciphersweet", - "version": "v4.5.1", + "version": "v4.7.0", "source": { "type": "git", "url": "https://github.com/paragonie/ciphersweet.git", - "reference": "b3689655a8726fd156d0eb31fdb4f0592a30d123" + "reference": "d7013e61f565c63213251222361ecbe060ec22de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/ciphersweet/zipball/b3689655a8726fd156d0eb31fdb4f0592a30d123", - "reference": "b3689655a8726fd156d0eb31fdb4f0592a30d123", + "url": "https://api.github.com/repos/paragonie/ciphersweet/zipball/d7013e61f565c63213251222361ecbe060ec22de", + "reference": "d7013e61f565c63213251222361ecbe060ec22de", "shasum": "" }, "require": { "ext-json": "*", "ext-openssl": "*", - "paragonie/constant_time_encoding": "^2", - "paragonie/sodium_compat": ">= 1.20 <2", + "paragonie/constant_time_encoding": "^2|^3", + "paragonie/sodium_compat": "^1|^2", "php": "^8.1" }, "require-dev": { @@ -6309,7 +6126,8 @@ ], "description": "Searchable field-level encryption library for relational databases", "keywords": [ - "FIPS 140-2", + "FIPS 140-3", + "NIST cryptography", "SQL encryption", "crm", "cryptography", @@ -6323,30 +6141,30 @@ ], "support": { "issues": "https://github.com/paragonie/ciphersweet/issues", - "source": "https://github.com/paragonie/ciphersweet/tree/v4.5.1" + "source": "https://github.com/paragonie/ciphersweet/tree/v4.7.0" }, - "time": "2023-10-28T10:16:13+00:00" + "time": "2024-05-11T06:44:22+00:00" }, { "name": "paragonie/constant_time_encoding", - "version": "v2.6.3", + "version": "v3.0.0", "source": { "type": "git", "url": "https://github.com/paragonie/constant_time_encoding.git", - "reference": "58c3f47f650c94ec05a151692652a868995d2938" + "reference": "df1e7fde177501eee2037dd159cf04f5f301a512" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938", - "reference": "58c3f47f650c94ec05a151692652a868995d2938", + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512", + "reference": "df1e7fde177501eee2037dd159cf04f5f301a512", "shasum": "" }, "require": { - "php": "^7|^8" + "php": "^8" }, "require-dev": { - "phpunit/phpunit": "^6|^7|^8|^9", - "vimeo/psalm": "^1|^2|^3|^4" + "phpunit/phpunit": "^9", + "vimeo/psalm": "^4|^5" }, "type": "library", "autoload": { @@ -6392,7 +6210,7 @@ "issues": "https://github.com/paragonie/constant_time_encoding/issues", "source": "https://github.com/paragonie/constant_time_encoding" }, - "time": "2022-06-14T06:56:20+00:00" + "time": "2024-05-08T12:36:18+00:00" }, { "name": "paragonie/random_compat", @@ -6446,16 +6264,16 @@ }, { "name": "paragonie/sodium_compat", - "version": "v1.20.0", + "version": "v1.21.1", "source": { "type": "git", "url": "https://github.com/paragonie/sodium_compat.git", - "reference": "e592a3e06d1fa0d43988c7c7d9948ca836f644b6" + "reference": "bb312875dcdd20680419564fe42ba1d9564b9e37" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/e592a3e06d1fa0d43988c7c7d9948ca836f644b6", - "reference": "e592a3e06d1fa0d43988c7c7d9948ca836f644b6", + "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/bb312875dcdd20680419564fe42ba1d9564b9e37", + "reference": "bb312875dcdd20680419564fe42ba1d9564b9e37", "shasum": "" }, "require": { @@ -6526,9 +6344,137 @@ ], "support": { "issues": "https://github.com/paragonie/sodium_compat/issues", - "source": "https://github.com/paragonie/sodium_compat/tree/v1.20.0" + "source": "https://github.com/paragonie/sodium_compat/tree/v1.21.1" }, - "time": "2023-04-30T00:54:53+00:00" + "time": "2024-04-22T22:05:04+00:00" + }, + { + "name": "php-di/invoker", + "version": "2.3.4", + "source": { + "type": "git", + "url": "https://github.com/PHP-DI/Invoker.git", + "reference": "33234b32dafa8eb69202f950a1fc92055ed76a86" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/33234b32dafa8eb69202f950a1fc92055ed76a86", + "reference": "33234b32dafa8eb69202f950a1fc92055ed76a86", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "psr/container": "^1.0|^2.0" + }, + "require-dev": { + "athletic/athletic": "~0.1.8", + "mnapoli/hard-mode": "~0.3.0", + "phpunit/phpunit": "^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Invoker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Generic and extensible callable invoker", + "homepage": "https://github.com/PHP-DI/Invoker", + "keywords": [ + "callable", + "dependency", + "dependency-injection", + "injection", + "invoke", + "invoker" + ], + "support": { + "issues": "https://github.com/PHP-DI/Invoker/issues", + "source": "https://github.com/PHP-DI/Invoker/tree/2.3.4" + }, + "funding": [ + { + "url": "https://github.com/mnapoli", + "type": "github" + } + ], + "time": "2023-09-08T09:24:21+00:00" + }, + { + "name": "php-di/php-di", + "version": "7.0.7", + "source": { + "type": "git", + "url": "https://github.com/PHP-DI/PHP-DI.git", + "reference": "e87435e3c0e8f22977adc5af0d5cdcc467e15cf1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/e87435e3c0e8f22977adc5af0d5cdcc467e15cf1", + "reference": "e87435e3c0e8f22977adc5af0d5cdcc467e15cf1", + "shasum": "" + }, + "require": { + "laravel/serializable-closure": "^1.0", + "php": ">=8.0", + "php-di/invoker": "^2.0", + "psr/container": "^1.1 || ^2.0" + }, + "provide": { + "psr/container-implementation": "^1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3", + "friendsofphp/proxy-manager-lts": "^1", + "mnapoli/phpunit-easymock": "^1.3", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^4.6" + }, + "suggest": { + "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "DI\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "The dependency injection container for humans", + "homepage": "https://php-di.org/", + "keywords": [ + "PSR-11", + "container", + "container-interop", + "dependency injection", + "di", + "ioc", + "psr11" + ], + "support": { + "issues": "https://github.com/PHP-DI/PHP-DI/issues", + "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.7" + }, + "funding": [ + { + "url": "https://github.com/mnapoli", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/php-di/php-di", + "type": "tidelift" + } + ], + "time": "2024-07-21T15:55:45+00:00" }, { "name": "php-http/client-common", @@ -6601,16 +6547,16 @@ }, { "name": "php-http/discovery", - "version": "1.19.2", + "version": "1.19.4", "source": { "type": "git", "url": "https://github.com/php-http/discovery.git", - "reference": "61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb" + "reference": "0700efda8d7526335132360167315fdab3aeb599" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/discovery/zipball/61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb", - "reference": "61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb", + "url": "https://api.github.com/repos/php-http/discovery/zipball/0700efda8d7526335132360167315fdab3aeb599", + "reference": "0700efda8d7526335132360167315fdab3aeb599", "shasum": "" }, "require": { @@ -6634,7 +6580,8 @@ "php-http/httplug": "^1.0 || ^2.0", "php-http/message-factory": "^1.0", "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3", - "symfony/phpunit-bridge": "^6.2" + "sebastian/comparator": "^3.0.5 || ^4.0.8", + "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1" }, "type": "composer-plugin", "extra": { @@ -6673,9 +6620,9 @@ ], "support": { "issues": "https://github.com/php-http/discovery/issues", - "source": "https://github.com/php-http/discovery/tree/1.19.2" + "source": "https://github.com/php-http/discovery/tree/1.19.4" }, - "time": "2023-11-30T16:49:05+00:00" + "time": "2024-03-29T13:00:05+00:00" }, { "name": "php-http/httplug", @@ -6736,16 +6683,16 @@ }, { "name": "php-http/message", - "version": "1.16.0", + "version": "1.16.1", "source": { "type": "git", "url": "https://github.com/php-http/message.git", - "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd" + "reference": "5997f3289332c699fa2545c427826272498a2088" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/message/zipball/47a14338bf4ebd67d317bf1144253d7db4ab55fd", - "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd", + "url": "https://api.github.com/repos/php-http/message/zipball/5997f3289332c699fa2545c427826272498a2088", + "reference": "5997f3289332c699fa2545c427826272498a2088", "shasum": "" }, "require": { @@ -6799,9 +6746,9 @@ ], "support": { "issues": "https://github.com/php-http/message/issues", - "source": "https://github.com/php-http/message/tree/1.16.0" + "source": "https://github.com/php-http/message/tree/1.16.1" }, - "time": "2023-05-17T06:43:38+00:00" + "time": "2024-03-07T13:22:09+00:00" }, { "name": "php-http/message-factory", @@ -6860,16 +6807,16 @@ }, { "name": "php-http/multipart-stream-builder", - "version": "1.3.0", + "version": "1.4.2", "source": { "type": "git", "url": "https://github.com/php-http/multipart-stream-builder.git", - "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a" + "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/f5938fd135d9fa442cc297dc98481805acfe2b6a", - "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a", + "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/10086e6de6f53489cca5ecc45b6f468604d3460e", + "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e", "shasum": "" }, "require": { @@ -6910,22 +6857,22 @@ ], "support": { "issues": "https://github.com/php-http/multipart-stream-builder/issues", - "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.0" + "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2" }, - "time": "2023-04-28T14:10:22+00:00" + "time": "2024-09-04T13:22:54+00:00" }, { "name": "php-http/promise", - "version": "1.2.1", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/php-http/promise.git", - "reference": "44a67cb59f708f826f3bec35f22030b3edb90119" + "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/promise/zipball/44a67cb59f708f826f3bec35f22030b3edb90119", - "reference": "44a67cb59f708f826f3bec35f22030b3edb90119", + "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83", + "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83", "shasum": "" }, "require": { @@ -6962,22 +6909,22 @@ ], "support": { "issues": "https://github.com/php-http/promise/issues", - "source": "https://github.com/php-http/promise/tree/1.2.1" + "source": "https://github.com/php-http/promise/tree/1.3.1" }, - "time": "2023-11-08T12:57:08+00:00" + "time": "2024-03-15T13:55:21+00:00" }, { "name": "phpoffice/phpspreadsheet", - "version": "1.29.0", + "version": "1.29.1", "source": { "type": "git", "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", - "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0" + "reference": "59ee38f7480904cd6487e5cbdea4d80ff2758719" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0", - "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0", + "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/59ee38f7480904cd6487e5cbdea4d80ff2758719", + "reference": "59ee38f7480904cd6487e5cbdea4d80ff2758719", "shasum": "" }, "require": { @@ -7012,7 +6959,7 @@ "phpcompatibility/php-compatibility": "^9.3", "phpstan/phpstan": "^1.1", "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0", + "phpunit/phpunit": "^8.5 || ^9.0", "squizlabs/php_codesniffer": "^3.7", "tecnickcom/tcpdf": "^6.5" }, @@ -7067,22 +7014,22 @@ ], "support": { "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", - "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0" + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.1" }, - "time": "2023-06-14T22:48:31+00:00" + "time": "2024-09-03T00:55:32+00:00" }, { "name": "phpoption/phpoption", - "version": "1.9.2", + "version": "1.9.3", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820" + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820", - "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", "shasum": "" }, "require": { @@ -7090,13 +7037,13 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" }, "type": "library", "extra": { "bamarni-bin": { "bin-links": true, - "forward-command": true + "forward-command": false }, "branch-alias": { "dev-master": "1.9-dev" @@ -7132,7 +7079,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.2" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" }, "funding": [ { @@ -7144,38 +7091,44 @@ "type": "tidelift" } ], - "time": "2023-11-12T21:59:55+00:00" + "time": "2024-07-20T21:41:07+00:00" }, { - "name": "pimple/pimple", - "version": "v3.5.0", + "name": "phpseclib/phpseclib", + "version": "3.0.41", "source": { "type": "git", - "url": "https://github.com/silexphp/Pimple.git", - "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed" + "url": "https://github.com/phpseclib/phpseclib.git", + "reference": "621c73f7dcb310b61de34d1da4c4204e8ace6ceb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed", - "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/621c73f7dcb310b61de34d1da4c4204e8ace6ceb", + "reference": "621c73f7dcb310b61de34d1da4c4204e8ace6ceb", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/container": "^1.1 || ^2.0" + "paragonie/constant_time_encoding": "^1|^2|^3", + "paragonie/random_compat": "^1.4|^2.0|^9.99.99", + "php": ">=5.6.1" }, "require-dev": { - "symfony/phpunit-bridge": "^5.4@dev" + "phpunit/phpunit": "*" + }, + "suggest": { + "ext-dom": "Install the DOM extension to load XML formatted public keys.", + "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.", + "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.", + "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.", + "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations." }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4.x-dev" - } - }, "autoload": { - "psr-0": { - "Pimple": "src/" + "files": [ + "phpseclib/bootstrap.php" + ], + "psr-4": { + "phpseclib3\\": "phpseclib/" } }, "notification-url": "https://packagist.org/downloads/", @@ -7184,20 +7137,129 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Jim Wigginton", + "email": "terrafrost@php.net", + "role": "Lead Developer" + }, + { + "name": "Patrick Monnerat", + "email": "pm@datasphere.ch", + "role": "Developer" + }, + { + "name": "Andreas Fischer", + "email": "bantu@phpbb.com", + "role": "Developer" + }, + { + "name": "Hans-Jürgen Petrich", + "email": "petrich@tronic-media.com", + "role": "Developer" + }, + { + "name": "Graham Campbell", + "email": "graham@alt-three.com", + "role": "Developer" } ], - "description": "Pimple, a simple Dependency Injection Container", - "homepage": "https://pimple.symfony.com", + "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", + "homepage": "http://phpseclib.sourceforge.net", "keywords": [ - "container", - "dependency injection" + "BigInteger", + "aes", + "asn.1", + "asn1", + "blowfish", + "crypto", + "cryptography", + "encryption", + "rsa", + "security", + "sftp", + "signature", + "signing", + "ssh", + "twofish", + "x.509", + "x509" ], "support": { - "source": "https://github.com/silexphp/Pimple/tree/v3.5.0" + "issues": "https://github.com/phpseclib/phpseclib/issues", + "source": "https://github.com/phpseclib/phpseclib/tree/3.0.41" }, - "time": "2021-10-28T11:13:42+00:00" + "funding": [ + { + "url": "https://github.com/terrafrost", + "type": "github" + }, + { + "url": "https://www.patreon.com/phpseclib", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib", + "type": "tidelift" + } + ], + "time": "2024-08-12T00:13:54+00:00" + }, + { + "name": "phpstan/phpstan", + "version": "1.12.2", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan.git", + "reference": "0ca1c7bb55fca8fe6448f16fff0f311ccec960a1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0ca1c7bb55fca8fe6448f16fff0f311ccec960a1", + "reference": "0ca1c7bb55fca8fe6448f16fff0f311ccec960a1", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0" + }, + "conflict": { + "phpstan/phpstan-shim": "*" + }, + "bin": [ + "phpstan", + "phpstan.phar" + ], + "type": "library", + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan - PHP Static Analysis Tool", + "keywords": [ + "dev", + "static analysis" + ], + "support": { + "docs": "https://phpstan.org/user-guide/getting-started", + "forum": "https://github.com/phpstan/phpstan/discussions", + "issues": "https://github.com/phpstan/phpstan/issues", + "security": "https://github.com/phpstan/phpstan/security/policy", + "source": "https://github.com/phpstan/phpstan-src" + }, + "funding": [ + { + "url": "https://github.com/ondrejmirtes", + "type": "github" + }, + { + "url": "https://github.com/phpstan", + "type": "github" + } + ], + "time": "2024-09-05T16:09:28+00:00" }, { "name": "podcastindex/podcastindex-php", @@ -7232,24 +7294,24 @@ }, { "name": "pragmarx/google2fa", - "version": "v8.0.1", + "version": "v8.0.3", "source": { "type": "git", "url": "https://github.com/antonioribeiro/google2fa.git", - "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3" + "reference": "6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/80c3d801b31fe165f8fe99ea085e0a37834e1be3", - "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3", + "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad", + "reference": "6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad", "shasum": "" }, "require": { - "paragonie/constant_time_encoding": "^1.0|^2.0", + "paragonie/constant_time_encoding": "^1.0|^2.0|^3.0", "php": "^7.1|^8.0" }, "require-dev": { - "phpstan/phpstan": "^0.12.18", + "phpstan/phpstan": "^1.9", "phpunit/phpunit": "^7.5.15|^8.5|^9.0" }, "type": "library", @@ -7278,9 +7340,9 @@ ], "support": { "issues": "https://github.com/antonioribeiro/google2fa/issues", - "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.1" + "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.3" }, - "time": "2022-06-13T21:57:56+00:00" + "time": "2024-09-05T11:56:40+00:00" }, { "name": "psr/cache", @@ -7536,20 +7598,20 @@ }, { "name": "psr/http-factory", - "version": "1.0.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", - "reference": "e616d01114759c4c489f93b099585439f795fe35" + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", - "reference": "e616d01114759c4c489f93b099585439f795fe35", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "shasum": "" }, "require": { - "php": ">=7.0.0", + "php": ">=7.1", "psr/http-message": "^1.0 || ^2.0" }, "type": "library", @@ -7573,7 +7635,7 @@ "homepage": "https://www.php-fig.org/" } ], - "description": "Common interfaces for PSR-7 HTTP message factories", + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", "keywords": [ "factory", "http", @@ -7585,9 +7647,9 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-factory/tree/1.0.2" + "source": "https://github.com/php-fig/http-factory" }, - "time": "2023-04-10T20:10:41+00:00" + "time": "2024-04-15T12:06:14+00:00" }, { "name": "psr/http-message", @@ -7644,16 +7706,16 @@ }, { "name": "psr/log", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" + "reference": "79dff0b268932c640297f5208d6298f71855c03e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", - "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", + "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e", + "reference": "79dff0b268932c640297f5208d6298f71855c03e", "shasum": "" }, "require": { @@ -7688,9 +7750,9 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/3.0.0" + "source": "https://github.com/php-fig/log/tree/3.0.1" }, - "time": "2021-07-14T16:46:02+00:00" + "time": "2024-08-21T13:31:24+00:00" }, { "name": "psr/simple-cache", @@ -7745,25 +7807,25 @@ }, { "name": "psy/psysh", - "version": "v0.11.22", + "version": "v0.12.4", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b" + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b", - "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818", + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818", "shasum": "" }, "require": { "ext-json": "*", "ext-tokenizer": "*", - "nikic/php-parser": "^4.0 || ^3.1", - "php": "^8.0 || ^7.0.8", - "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", - "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" }, "conflict": { "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" @@ -7774,8 +7836,7 @@ "suggest": { "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", "ext-pdo-sqlite": "The doc command requires SQLite to work.", - "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", - "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." }, "bin": [ "bin/psysh" @@ -7783,7 +7844,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-0.11": "0.11.x-dev" + "dev-main": "0.12.x-dev" }, "bamarni-bin": { "bin-links": false, @@ -7819,22 +7880,22 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.11.22" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.4" }, - "time": "2023-10-14T21:56:36+00:00" + "time": "2024-06-10T01:18:23+00:00" }, { "name": "pusher/pusher-php-server", - "version": "7.2.3", + "version": "7.2.4", "source": { "type": "git", "url": "https://github.com/pusher/pusher-http-php.git", - "reference": "416e68dd5f640175ad5982131c42a7a666d1d8e9" + "reference": "de2f72296808f9cafa6a4462b15a768ff130cddb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/416e68dd5f640175ad5982131c42a7a666d1d8e9", - "reference": "416e68dd5f640175ad5982131c42a7a666d1d8e9", + "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/de2f72296808f9cafa6a4462b15a768ff130cddb", + "reference": "de2f72296808f9cafa6a4462b15a768ff130cddb", "shasum": "" }, "require": { @@ -7880,9 +7941,9 @@ ], "support": { "issues": "https://github.com/pusher/pusher-http-php/issues", - "source": "https://github.com/pusher/pusher-http-php/tree/7.2.3" + "source": "https://github.com/pusher/pusher-http-php/tree/7.2.4" }, - "time": "2023-05-17T16:00:06+00:00" + "time": "2023-12-15T10:58:53+00:00" }, { "name": "qcod/laravel-gamify", @@ -8007,34 +8068,33 @@ }, { "name": "ralphjsmit/laravel-helpers", - "version": "1.8.1", + "version": "1.9.0", "source": { "type": "git", "url": "https://github.com/ralphjsmit/laravel-helpers.git", - "reference": "031a6f97499f52f7e678947c7948870c3a712aba" + "reference": "840b4979a92c7b676d25f56430823f12481f2914" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ralphjsmit/laravel-helpers/zipball/031a6f97499f52f7e678947c7948870c3a712aba", - "reference": "031a6f97499f52f7e678947c7948870c3a712aba", + "url": "https://api.github.com/repos/ralphjsmit/laravel-helpers/zipball/840b4979a92c7b676d25f56430823f12481f2914", + "reference": "840b4979a92c7b676d25f56430823f12481f2914", "shasum": "" }, "require": { "guzzlehttp/guzzle": "^7.4", - "illuminate/contracts": "^8.73|^9.0|^10.0", + "illuminate/contracts": "^8.73|^9.0|^10.0|^11.0", "php": "^8.0", "spatie/laravel-package-tools": "^1.9.2" }, "require-dev": { - "livewire/livewire": "^2.9", - "nesbot/carbon": "^2.66", - "nunomaduro/collision": "^5.10|^6.1|^7.0", - "orchestra/testbench": "^6.22|^7.0|^8.0", - "pestphp/pest": "^1.21", - "pestphp/pest-plugin-laravel": "^1.1", - "phpunit/phpunit": "^9.5", - "ralphjsmit/pest-plugin-livewire": "^1.0", - "spatie/invade": "^1.0", + "livewire/livewire": "^2.9|^3.4", + "nesbot/carbon": "^2.66|^3.0", + "nunomaduro/collision": "^5.10|^6.1|^7.0|^8.0", + "orchestra/testbench": "^6.22|^7.0|^8.0|^9.0", + "pestphp/pest": "^1.21|^2.34", + "pestphp/pest-plugin-laravel": "^1.1|^2.3", + "phpunit/phpunit": "^9.5|^10.5", + "spatie/invade": "^1.0|^2.0", "spatie/laravel-ray": "^1.26" }, "type": "library", @@ -8078,39 +8138,40 @@ ], "support": { "issues": "https://github.com/ralphjsmit/laravel-helpers/issues", - "source": "https://github.com/ralphjsmit/laravel-helpers/tree/1.8.1" + "source": "https://github.com/ralphjsmit/laravel-helpers/tree/1.9.0" }, - "time": "2023-08-03T09:01:24+00:00" + "time": "2024-03-14T08:30:30+00:00" }, { "name": "ralphjsmit/laravel-seo", - "version": "1.4.2", + "version": "1.6.3", "source": { "type": "git", "url": "https://github.com/ralphjsmit/laravel-seo.git", - "reference": "04a3d305b29ee403fba134c05bbd55051ae337c7" + "reference": "f22d0a2982f0d5162b57609b56537643d562b67d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ralphjsmit/laravel-seo/zipball/04a3d305b29ee403fba134c05bbd55051ae337c7", - "reference": "04a3d305b29ee403fba134c05bbd55051ae337c7", + "url": "https://api.github.com/repos/ralphjsmit/laravel-seo/zipball/f22d0a2982f0d5162b57609b56537643d562b67d", + "reference": "f22d0a2982f0d5162b57609b56537643d562b67d", "shasum": "" }, "require": { - "illuminate/contracts": "^9.0|^10.0", + "illuminate/contracts": "^9.0|^10.0|^11.0", "php": "^8.0", - "ralphjsmit/laravel-helpers": "^1.5", + "ralphjsmit/laravel-helpers": "^1.9", "spatie/laravel-package-tools": "^1.9.2" }, "require-dev": { - "nesbot/carbon": "^2.66", - "nunomaduro/collision": "^5.10|^6.0", - "orchestra/testbench": "^7.0|^8.0", - "pestphp/pest": "^1.21", - "pestphp/pest-plugin-laravel": "^1.1", - "phpunit/phpunit": "^9.5", + "laravel/pint": "^1.16", + "nesbot/carbon": "^2.66|^3.0", + "nunomaduro/collision": "^5.10|^6.0|^7.0|^8.0", + "orchestra/testbench": "^7.0|^8.0|^9.0", + "pestphp/pest": "^1.21|^2.0", + "pestphp/pest-plugin-laravel": "^1.1|^2.0", + "phpunit/phpunit": "^9.5|^10.5", "spatie/laravel-ray": "^1.26", - "spatie/pest-plugin-test-time": "^1.0" + "spatie/pest-plugin-test-time": "^1.0|^2.0" }, "type": "library", "extra": { @@ -8152,37 +8213,37 @@ ], "support": { "issues": "https://github.com/ralphjsmit/laravel-seo/issues", - "source": "https://github.com/ralphjsmit/laravel-seo/tree/1.4.2" + "source": "https://github.com/ralphjsmit/laravel-seo/tree/1.6.3" }, - "time": "2023-10-30T08:11:13+00:00" + "time": "2024-08-30T11:58:06+00:00" }, { "name": "ralphjsmit/livewire-urls", - "version": "1.3.1", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/ralphjsmit/livewire-urls.git", - "reference": "41fc65910c58ccf2b19871cf24a6174948986a27" + "reference": "589815ce84fe6596e82b908b8679757781bcf6fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ralphjsmit/livewire-urls/zipball/41fc65910c58ccf2b19871cf24a6174948986a27", - "reference": "41fc65910c58ccf2b19871cf24a6174948986a27", + "url": "https://api.github.com/repos/ralphjsmit/livewire-urls/zipball/589815ce84fe6596e82b908b8679757781bcf6fb", + "reference": "589815ce84fe6596e82b908b8679757781bcf6fb", "shasum": "" }, "require": { - "illuminate/contracts": "^8.83|^9.0|^10.0", + "illuminate/contracts": "^8.83|^9.0|^10.0|^11.0", "livewire/livewire": "^2.10|^3.0", "php": "^8.0", "spatie/laravel-package-tools": "^1.9.2" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.8", - "nesbot/carbon": "^2.66", - "nunomaduro/collision": "^5.0|^6.0|^7.0", - "orchestra/testbench": "^6.0|^7.0|^8.0", - "pestphp/pest": "^1.21", - "pestphp/pest-plugin-laravel": "^1.1", + "nesbot/carbon": "^2.66|^3.0", + "nunomaduro/collision": "^5.0|^6.0|^7.0|^8.0", + "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0", + "pestphp/pest": "^1.21|^2.34", + "pestphp/pest-plugin-laravel": "^1.1|^2.3", "phpunit/phpunit": "^9.5|^10.0", "spatie/laravel-ray": "^1.26" }, @@ -8222,9 +8283,9 @@ ], "support": { "issues": "https://github.com/ralphjsmit/livewire-urls/issues", - "source": "https://github.com/ralphjsmit/livewire-urls/tree/1.3.1" + "source": "https://github.com/ralphjsmit/livewire-urls/tree/1.4.0" }, - "time": "2023-11-29T19:53:22+00:00" + "time": "2024-03-14T09:52:50+00:00" }, { "name": "ramsey/collection", @@ -8317,20 +8378,20 @@ }, { "name": "ramsey/uuid", - "version": "4.7.5", + "version": "4.7.6", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e" + "reference": "91039bc1faa45ba123c4328958e620d382ec7088" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", - "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", "ext-json": "*", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" @@ -8393,7 +8454,7 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.5" + "source": "https://github.com/ramsey/uuid/tree/4.7.6" }, "funding": [ { @@ -8405,30 +8466,30 @@ "type": "tidelift" } ], - "time": "2023-11-08T05:53:05+00:00" + "time": "2024-04-27T21:32:50+00:00" }, { "name": "rap2hpoutre/fast-excel", - "version": "v5.3.0", + "version": "v5.5.0", "source": { "type": "git", "url": "https://github.com/rap2hpoutre/fast-excel.git", - "reference": "97987c4f3d09e9ef8d9480b46116387e8bf6e3a4" + "reference": "83604f2a16fbb0374747299173abe691b24916da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/rap2hpoutre/fast-excel/zipball/97987c4f3d09e9ef8d9480b46116387e8bf6e3a4", - "reference": "97987c4f3d09e9ef8d9480b46116387e8bf6e3a4", + "url": "https://api.github.com/repos/rap2hpoutre/fast-excel/zipball/83604f2a16fbb0374747299173abe691b24916da", + "reference": "83604f2a16fbb0374747299173abe691b24916da", "shasum": "" }, "require": { - "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0|^10.0", - "openspout/openspout": "^4.1.1", + "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0", + "openspout/openspout": "^4.24", "php": "^8.0" }, "require-dev": { - "illuminate/database": "^6.20.12 || ^7.30.4 || ^8.24.0 || ^9.0|^10.0", - "phpunit/phpunit": "^9.5", + "illuminate/database": "^6.20.12 || ^7.30.4 || ^8.24.0 || ^9.0 || ^10.0 || ^11.0", + "phpunit/phpunit": "^9.5 || ^10.1", "squizlabs/php_codesniffer": "3.*" }, "type": "library", @@ -8467,7 +8528,7 @@ ], "support": { "issues": "https://github.com/rap2hpoutre/fast-excel/issues", - "source": "https://github.com/rap2hpoutre/fast-excel/tree/v5.3.0" + "source": "https://github.com/rap2hpoutre/fast-excel/tree/v5.5.0" }, "funding": [ { @@ -8475,7 +8536,7 @@ "type": "github" } ], - "time": "2023-09-01T06:07:32+00:00" + "time": "2024-06-03T08:00:43+00:00" }, { "name": "rappasoft/laravel-livewire-tables", @@ -8549,6 +8610,65 @@ ], "time": "2023-07-15T19:50:12+00:00" }, + { + "name": "rector/rector", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://github.com/rectorphp/rector.git", + "reference": "42a4aa23b48b4cfc8ebfeac2b570364e27744381" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/rectorphp/rector/zipball/42a4aa23b48b4cfc8ebfeac2b570364e27744381", + "reference": "42a4aa23b48b4cfc8ebfeac2b570364e27744381", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "phpstan/phpstan": "^1.11.11" + }, + "conflict": { + "rector/rector-doctrine": "*", + "rector/rector-downgrade-php": "*", + "rector/rector-phpunit": "*", + "rector/rector-symfony": "*" + }, + "suggest": { + "ext-dom": "To manipulate phpunit.xml via the custom-rule command" + }, + "bin": [ + "bin/rector" + ], + "type": "library", + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Instant Upgrade and Automated Refactoring of any PHP code", + "keywords": [ + "automation", + "dev", + "migration", + "refactoring" + ], + "support": { + "issues": "https://github.com/rectorphp/rector/issues", + "source": "https://github.com/rectorphp/rector/tree/1.2.4" + }, + "funding": [ + { + "url": "https://github.com/tomasvotruba", + "type": "github" + } + ], + "time": "2024-08-23T09:03:01+00:00" + }, { "name": "sentry/sdk", "version": "3.6.0", @@ -8906,16 +9026,16 @@ }, { "name": "simplito/bn-php", - "version": "1.1.3", + "version": "1.1.4", "source": { "type": "git", "url": "https://github.com/simplito/bn-php.git", - "reference": "189167f940cdb681288a967b0f4d66de81adcd97" + "reference": "83446756a81720eacc2ffb87ff97958431451fd6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplito/bn-php/zipball/189167f940cdb681288a967b0f4d66de81adcd97", - "reference": "189167f940cdb681288a967b0f4d66de81adcd97", + "url": "https://api.github.com/repos/simplito/bn-php/zipball/83446756a81720eacc2ffb87ff97958431451fd6", + "reference": "83446756a81720eacc2ffb87ff97958431451fd6", "shasum": "" }, "require": { @@ -8944,22 +9064,22 @@ "description": "Big number implementation compatible with bn.js", "support": { "issues": "https://github.com/simplito/bn-php/issues", - "source": "https://github.com/simplito/bn-php/tree/1.1.3" + "source": "https://github.com/simplito/bn-php/tree/1.1.4" }, - "time": "2022-08-12T18:58:14+00:00" + "time": "2024-01-10T16:16:59+00:00" }, { "name": "simplito/elliptic-php", - "version": "1.0.11", + "version": "1.0.12", "source": { "type": "git", "url": "https://github.com/simplito/elliptic-php.git", - "reference": "d0957dd6461f19a5ceb94cf3a0a908d8a0485b40" + "reference": "be321666781be2be2c89c79c43ffcac834bc8868" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplito/elliptic-php/zipball/d0957dd6461f19a5ceb94cf3a0a908d8a0485b40", - "reference": "d0957dd6461f19a5ceb94cf3a0a908d8a0485b40", + "url": "https://api.github.com/repos/simplito/elliptic-php/zipball/be321666781be2be2c89c79c43ffcac834bc8868", + "reference": "be321666781be2be2c89c79c43ffcac834bc8868", "shasum": "" }, "require": { @@ -9009,22 +9129,22 @@ ], "support": { "issues": "https://github.com/simplito/elliptic-php/issues", - "source": "https://github.com/simplito/elliptic-php/tree/1.0.11" + "source": "https://github.com/simplito/elliptic-php/tree/1.0.12" }, - "time": "2023-08-28T15:27:19+00:00" + "time": "2024-01-09T14:57:04+00:00" }, { "name": "spatie/backtrace", - "version": "1.5.3", + "version": "1.6.2", "source": { "type": "git", "url": "https://github.com/spatie/backtrace.git", - "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab" + "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab", - "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/1a9a145b044677ae3424693f7b06479fc8c137a9", + "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9", "shasum": "" }, "require": { @@ -9032,6 +9152,7 @@ }, "require-dev": { "ext-json": "*", + "laravel/serializable-closure": "^1.3", "phpunit/phpunit": "^9.3", "spatie/phpunit-snapshot-assertions": "^4.2", "symfony/var-dumper": "^5.1" @@ -9061,7 +9182,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/backtrace/tree/1.5.3" + "source": "https://github.com/spatie/backtrace/tree/1.6.2" }, "funding": [ { @@ -9073,30 +9194,30 @@ "type": "other" } ], - "time": "2023-06-28T12:59:17+00:00" + "time": "2024-07-22T08:21:24+00:00" }, { "name": "spatie/commonmark-shiki-highlighter", - "version": "2.1.1", + "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/spatie/commonmark-shiki-highlighter.git", - "reference": "52528a02f61d84030b313b5c7b0c4dd8edca7187" + "reference": "3dd337649d87a9b264838320a07a89d22e75d41b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/commonmark-shiki-highlighter/zipball/52528a02f61d84030b313b5c7b0c4dd8edca7187", - "reference": "52528a02f61d84030b313b5c7b0c4dd8edca7187", + "url": "https://api.github.com/repos/spatie/commonmark-shiki-highlighter/zipball/3dd337649d87a9b264838320a07a89d22e75d41b", + "reference": "3dd337649d87a9b264838320a07a89d22e75d41b", "shasum": "" }, "require": { - "league/commonmark": "^2.0", + "league/commonmark": "^2.4.2", "php": "^8.0", - "spatie/shiki-php": "^1.1.1", - "symfony/process": "^5.3|^6.0" + "spatie/shiki-php": "^2.0", + "symfony/process": "^6.0|^7.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.19", + "friendsofphp/php-cs-fixer": "^2.19|^v3.49.0", "phpunit/phpunit": "^9.5", "spatie/phpunit-snapshot-assertions": "^4.2.7", "spatie/ray": "^1.28" @@ -9125,7 +9246,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/commonmark-shiki-highlighter/tree/2.1.1" + "source": "https://github.com/spatie/commonmark-shiki-highlighter/tree/2.4.0" }, "funding": [ { @@ -9133,32 +9254,32 @@ "type": "github" } ], - "time": "2022-11-28T08:03:04+00:00" + "time": "2024-04-11T12:12:10+00:00" }, { "name": "spatie/eloquent-sortable", - "version": "4.0.2", + "version": "4.4.0", "source": { "type": "git", "url": "https://github.com/spatie/eloquent-sortable.git", - "reference": "74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a" + "reference": "7a460c775d29741f42744bac52f993cb5b84be0f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a", - "reference": "74994d10a17d15d2cdb319d6b2ad7cb6fa067c0a", + "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/7a460c775d29741f42744bac52f993cb5b84be0f", + "reference": "7a460c775d29741f42744bac52f993cb5b84be0f", "shasum": "" }, "require": { - "illuminate/database": "^9.0|^10.0", - "illuminate/support": "^9.0|^10.0", - "nesbot/carbon": "^2.63", + "illuminate/database": "^9.31|^10.0|^11.0", + "illuminate/support": "^9.31|^10.0|^11.0", + "nesbot/carbon": "^2.63|^3.0", "php": "^8.1", "spatie/laravel-package-tools": "^1.9" }, "require-dev": { - "orchestra/testbench": "^7.0|^8.0", - "phpunit/phpunit": "^9.5" + "orchestra/testbench": "^7.0|^8.0|^9.0", + "phpunit/phpunit": "^9.5|^10.0" }, "type": "library", "extra": { @@ -9195,7 +9316,7 @@ ], "support": { "issues": "https://github.com/spatie/eloquent-sortable/issues", - "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.2" + "source": "https://github.com/spatie/eloquent-sortable/tree/4.4.0" }, "funding": [ { @@ -9207,7 +9328,7 @@ "type": "github" } ], - "time": "2023-01-23T08:34:14+00:00" + "time": "2024-06-04T11:09:54+00:00" }, { "name": "spatie/enum", @@ -9287,30 +9408,30 @@ }, { "name": "spatie/icalendar-generator", - "version": "2.5.6", + "version": "2.8.1", "source": { "type": "git", "url": "https://github.com/spatie/icalendar-generator.git", - "reference": "8af1ebe392d04369f647574d0053a00da4cff311" + "reference": "6cb8b9b9df72bbea25b302aabce680917739fdb6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/icalendar-generator/zipball/8af1ebe392d04369f647574d0053a00da4cff311", - "reference": "8af1ebe392d04369f647574d0053a00da4cff311", + "url": "https://api.github.com/repos/spatie/icalendar-generator/zipball/6cb8b9b9df72bbea25b302aabce680917739fdb6", + "reference": "6cb8b9b9df72bbea25b302aabce680917739fdb6", "shasum": "" }, "require": { "ext-mbstring": "*", - "nesbot/carbon": "^2.63", - "php": "^7.4|^8.0", + "php": "^8.1", "spatie/enum": "^3.11" }, "require-dev": { "ext-json": "*", "larapack/dd": "^1.1", - "pestphp/pest": "^1.22", - "spatie/pest-plugin-snapshots": "^1.1", - "vimeo/psalm": "^4.13" + "nesbot/carbon": "^3.5", + "pestphp/pest": "^2.34", + "spatie/pest-plugin-snapshots": "^2.1", + "vimeo/psalm": "^5.24" }, "type": "library", "autoload": { @@ -9340,9 +9461,10 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/icalendar-generator/tree/2.5.6" + "issues": "https://github.com/spatie/icalendar-generator/issues", + "source": "https://github.com/spatie/icalendar-generator/tree/2.8.1" }, - "time": "2023-03-24T10:38:32+00:00" + "time": "2024-06-17T11:23:50+00:00" }, { "name": "spatie/image", @@ -9415,16 +9537,16 @@ }, { "name": "spatie/image-optimizer", - "version": "1.7.2", + "version": "1.7.5", "source": { "type": "git", "url": "https://github.com/spatie/image-optimizer.git", - "reference": "62f7463483d1bd975f6f06025d89d42a29608fe1" + "reference": "43aff6725cd87bb78ccd8532633cfa8bdc962505" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/62f7463483d1bd975f6f06025d89d42a29608fe1", - "reference": "62f7463483d1bd975f6f06025d89d42a29608fe1", + "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/43aff6725cd87bb78ccd8532633cfa8bdc962505", + "reference": "43aff6725cd87bb78ccd8532633cfa8bdc962505", "shasum": "" }, "require": { @@ -9464,41 +9586,41 @@ ], "support": { "issues": "https://github.com/spatie/image-optimizer/issues", - "source": "https://github.com/spatie/image-optimizer/tree/1.7.2" + "source": "https://github.com/spatie/image-optimizer/tree/1.7.5" }, - "time": "2023-11-03T10:08:02+00:00" + "time": "2024-05-16T08:48:33+00:00" }, { "name": "spatie/laravel-ciphersweet", - "version": "1.5.0", + "version": "1.6.2", "source": { "type": "git", "url": "https://github.com/spatie/laravel-ciphersweet.git", - "reference": "e9584b1069f2ee4c98a7d5bb4ddae21804858adc" + "reference": "77b5cd8066858529ca611edf99288366efa62b61" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-ciphersweet/zipball/e9584b1069f2ee4c98a7d5bb4ddae21804858adc", - "reference": "e9584b1069f2ee4c98a7d5bb4ddae21804858adc", + "url": "https://api.github.com/repos/spatie/laravel-ciphersweet/zipball/77b5cd8066858529ca611edf99288366efa62b61", + "reference": "77b5cd8066858529ca611edf99288366efa62b61", "shasum": "" }, "require": { - "illuminate/contracts": "^9.19|^10.0", + "illuminate/contracts": "^9.19|^10.0|^11.0", "paragonie/ciphersweet": "^4.0.1", "php": "^8.1", "spatie/laravel-package-tools": "^1.12.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.8", - "nunomaduro/collision": "^6.0", + "nunomaduro/collision": "^6.0|^8.0", "nunomaduro/larastan": "^2.0.1", - "orchestra/testbench": "^7.0|^8.0", - "pestphp/pest": "^1.21", - "pestphp/pest-plugin-laravel": "^1.1", + "orchestra/testbench": "^7.0|^8.0|^9.0", + "pestphp/pest": "^1.21|^2.34", + "pestphp/pest-plugin-laravel": "^1.1|^2.3", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^9.5", + "phpunit/phpunit": "^9.5|^10.5", "spatie/laravel-ray": "^1.26" }, "type": "library", @@ -9536,225 +9658,33 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-ciphersweet/tree/1.5.0" + "source": "https://github.com/spatie/laravel-ciphersweet/tree/1.6.2" }, - "time": "2023-11-07T08:26:33+00:00" - }, - { - "name": "spatie/laravel-comments", - "version": "1.4.8", - "source": { - "type": "git", - "url": "git@github.com:spatie/laravel-comments.git", - "reference": "f0f9db37a24a934d90476660ce29f13aded170c9" - }, - "dist": { - "type": "zip", - "url": "https://satis.spatie.be/dist/spatie/laravel-comments/spatie-laravel-comments-f0f9db37a24a934d90476660ce29f13aded170c9-zip-3c7237.zip", - "reference": "f0f9db37a24a934d90476660ce29f13aded170c9", - "shasum": "568a9ebbca7821a51eb45966b6371ce7b651cf02" - }, - "require": { - "illuminate/contracts": "^9.0|^10.0", - "php": "^8.1", - "spatie/laravel-package-tools": "^1.9.2", - "spatie/once": "^3.0", - "symfony/html-sanitizer": "^6.1" - }, - "require-dev": { - "nunomaduro/collision": "^6.0", - "nunomaduro/larastan": "^2.0", - "orchestra/testbench": "^7.0|^8.0", - "pestphp/pest": "^1.21", - "pestphp/pest-plugin-laravel": "^1.0", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^9.5", - "spatie/laravel-markdown": "^2.1", - "spatie/laravel-ray": "^1.26", - "spatie/pest-plugin-snapshots": "^1.1" - }, - "suggest": { - "spatie/laravel-markdown": "Required to convert markdown to HTML" - }, - "type": "library", - "extra": { - "laravel": { - "providers": [ - "Spatie\\Comments\\CommentsServiceProvider" - ], - "aliases": { - "Comments": "Spatie\\Comments\\Facades\\Comments" - } - } - }, - "autoload": { - "psr-4": { - "Spatie\\Comments\\": "src", - "Spatie\\Comments\\Database\\Factories\\": "database/factories" - } - }, - "autoload-dev": { - "psr-4": { - "Spatie\\Comments\\Tests\\": "tests" - } - }, - "scripts": { - "analyse": [ - "vendor/bin/phpstan analyse" - ], - "baseline": [ - "vendor/bin/phpstan --generate-baseline" - ], - "test": [ - "vendor/bin/pest" - ], - "test-coverage": [ - "vendor/bin/pest coverage" - ] - }, - "authors": [ - { - "name": "Freek Van der Herten", - "email": "freek@spatie.be", - "role": "Developer" - } - ], - "description": "Associate comments and reactions with Eloquent models", - "homepage": "https://github.com/spatie/laravel-comments", - "keywords": [ - "laravel", - "laravel-comments", - "spatie" - ], - "support": { - "source": "https://github.com/spatie/laravel-comments/tree/1.4.8", - "issues": "https://github.com/spatie/laravel-comments/issues" - }, - "funding": [ - { - "type": "github", - "url": "https://github.com/spatie" - } - ], - "time": "2023-12-07T16:40:53+00:00" - }, - { - "name": "spatie/laravel-comments-livewire", - "version": "1.4.0", - "source": { - "type": "git", - "url": "git@github.com:spatie/laravel-comments-livewire.git", - "reference": "9aa830d9ef2a9e02e20ffbca2d80e10fec0c9ce8" - }, - "dist": { - "type": "zip", - "url": "https://satis.spatie.be/dist/spatie/laravel-comments-livewire/spatie-laravel-comments-livewire-9aa830d9ef2a9e02e20ffbca2d80e10fec0c9ce8-zip-850901.zip", - "reference": "9aa830d9ef2a9e02e20ffbca2d80e10fec0c9ce8", - "shasum": "304021dc49e62300a30c5f52e0c694937b85ee36" - }, - "require": { - "illuminate/contracts": "^9.0|^10.0", - "livewire/livewire": "^2.8", - "php": "^8.1", - "spatie/laravel-comments": "^1.3", - "spatie/laravel-markdown": "^2.1", - "spatie/laravel-package-tools": "^1.10.0" - }, - "require-dev": { - "nunomaduro/collision": "^6.0", - "nunomaduro/larastan": "^2.0", - "orchestra/testbench": "^7.0|^8.0", - "pestphp/pest": "^1.21", - "pestphp/pest-plugin-laravel": "^1.1", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^9.5", - "spatie/laravel-ray": "^1.26" - }, - "type": "library", - "extra": { - "laravel": { - "providers": [ - "Spatie\\LivewireComments\\LivewireCommentsServiceProvider" - ] - } - }, - "autoload": { - "psr-4": { - "Spatie\\LivewireComments\\": "src", - "Spatie\\LivewireComments\\Database\\Factories\\": "database/factories" - } - }, - "autoload-dev": { - "psr-4": { - "Spatie\\LivewireComments\\Tests\\": "tests" - } - }, - "scripts": { - "analyse": [ - "vendor/bin/phpstan analyse" - ], - "test": [ - "vendor/bin/pest" - ], - "test-coverage": [ - "vendor/bin/pest coverage" - ] - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Freek Van der Herten", - "email": "freek@spatie.be", - "role": "Developer" - } - ], - "description": "Livewire components for laravel-comments", - "homepage": "https://github.com/spatie/laravel-comments", - "keywords": [ - "laravel", - "laravel-comments", - "spatie" - ], - "support": { - "source": "https://github.com/spatie/laravel-comments-livewire/tree/1.4.0" - }, - "funding": [ - { - "type": "github", - "url": "https://github.com/spatie" - } - ], - "time": "2023-06-21T09:34:54+00:00" + "time": "2024-07-18T13:03:10+00:00" }, { "name": "spatie/laravel-feed", - "version": "4.3.0", + "version": "4.4.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-feed.git", - "reference": "1cf06a43b4ee0fdeb919983a76de68467ccdb844" + "reference": "8cd283bbb998beb3ae220e71bae162e52dfbd1d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-feed/zipball/1cf06a43b4ee0fdeb919983a76de68467ccdb844", - "reference": "1cf06a43b4ee0fdeb919983a76de68467ccdb844", + "url": "https://api.github.com/repos/spatie/laravel-feed/zipball/8cd283bbb998beb3ae220e71bae162e52dfbd1d9", + "reference": "8cd283bbb998beb3ae220e71bae162e52dfbd1d9", "shasum": "" }, "require": { - "illuminate/contracts": "^10.0", - "illuminate/http": "^10.0", - "illuminate/support": "^10.0", + "illuminate/contracts": "^10.0|^11.0", + "illuminate/http": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", "php": "^8.0", "spatie/laravel-package-tools": "^1.15" }, "require-dev": { - "orchestra/testbench": "^8.0", + "orchestra/testbench": "^8.0|^9.0", "pestphp/pest": "^2.0", "spatie/pest-plugin-snapshots": "^2.0", "spatie/test-time": "^1.2" @@ -9810,7 +9740,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-feed/tree/4.3.0" + "source": "https://github.com/spatie/laravel-feed/tree/4.4.0" }, "funding": [ { @@ -9822,36 +9752,36 @@ "type": "github" } ], - "time": "2023-08-07T14:46:53+00:00" + "time": "2024-03-01T10:20:32+00:00" }, { "name": "spatie/laravel-google-fonts", - "version": "1.2.3", + "version": "1.4.1", "source": { "type": "git", "url": "https://github.com/spatie/laravel-google-fonts.git", - "reference": "8cc6efb698b7a1324229bc55d5ece8944835d43b" + "reference": "2ddd1c05ad56434c44b529c14403b5f5262b38d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-google-fonts/zipball/8cc6efb698b7a1324229bc55d5ece8944835d43b", - "reference": "8cc6efb698b7a1324229bc55d5ece8944835d43b", + "url": "https://api.github.com/repos/spatie/laravel-google-fonts/zipball/2ddd1c05ad56434c44b529c14403b5f5262b38d0", + "reference": "2ddd1c05ad56434c44b529c14403b5f5262b38d0", "shasum": "" }, "require": { "guzzlehttp/guzzle": "^7.3|^7.2", - "illuminate/contracts": "^8.37|^9.0|^10.0", + "illuminate/contracts": "^8.37|^9.0|^10.0|^11.0", "php": "^8.0", "spatie/laravel-package-tools": "^1.7.0" }, "require-dev": { - "brianium/paratest": "^6.3", - "nunomaduro/collision": "^5.4|^6.0", - "orchestra/testbench": "^6.17|^7.0|^8.0", - "pestphp/pest": "^1.22", + "brianium/paratest": "^6.3|^7.4", + "nunomaduro/collision": "^5.4|^6.0|^8.0", + "orchestra/testbench": "^6.17|^7.0|^8.0|^9.0", + "pestphp/pest": "^1.22|^2.34", "spatie/laravel-ray": "^1.17", - "spatie/pest-plugin-snapshots": "^1.1", - "spatie/phpunit-snapshot-assertions": "^4.2" + "spatie/pest-plugin-snapshots": "^1.1|^2.1", + "spatie/phpunit-snapshot-assertions": "^4.2|^5.1" }, "type": "library", "extra": { @@ -9895,7 +9825,8 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-google-fonts/tree/1.2.3" + "issues": "https://github.com/spatie/laravel-google-fonts/issues", + "source": "https://github.com/spatie/laravel-google-fonts/tree/1.4.1" }, "funding": [ { @@ -9903,30 +9834,30 @@ "type": "github" } ], - "time": "2023-01-24T23:50:49+00:00" + "time": "2024-03-14T09:50:35+00:00" }, { "name": "spatie/laravel-markdown", - "version": "2.4.0", + "version": "2.5.2", "source": { "type": "git", "url": "https://github.com/spatie/laravel-markdown.git", - "reference": "38d11c666ccdbf111535677c1d927b349b64aca4" + "reference": "66660b21cbc8e50c6129cfe9fac4d96beac8f8e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-markdown/zipball/38d11c666ccdbf111535677c1d927b349b64aca4", - "reference": "38d11c666ccdbf111535677c1d927b349b64aca4", + "url": "https://api.github.com/repos/spatie/laravel-markdown/zipball/66660b21cbc8e50c6129cfe9fac4d96beac8f8e5", + "reference": "66660b21cbc8e50c6129cfe9fac4d96beac8f8e5", "shasum": "" }, "require": { - "illuminate/cache": "^8.49|^9.0|^10.0", - "illuminate/contracts": "^8.37|^9.0|^10.0", - "illuminate/support": "^8.49|^9.0|^10.0", - "illuminate/view": "^8.49|^9.0|^10.0", - "league/commonmark": "^2.2", - "php": "^8.0", - "spatie/commonmark-shiki-highlighter": "^2.0", + "illuminate/cache": "^9.0|^10.0|^11.0", + "illuminate/contracts": "^9.0|^10.0|^11.0", + "illuminate/support": "^9.0|^10.0|^11.0", + "illuminate/view": "^9.0|^10.0|^11.0", + "league/commonmark": "^2.4.2", + "php": "^8.1", + "spatie/commonmark-shiki-highlighter": "^2.3", "spatie/laravel-package-tools": "^1.4.3" }, "require-dev": { @@ -9971,7 +9902,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-markdown/tree/2.4.0" + "source": "https://github.com/spatie/laravel-markdown/tree/2.5.2" }, "funding": [ { @@ -9979,7 +9910,7 @@ "type": "github" } ], - "time": "2023-08-17T06:59:15+00:00" + "time": "2024-04-22T14:16:23+00:00" }, { "name": "spatie/laravel-medialibrary", @@ -10091,26 +10022,25 @@ }, { "name": "spatie/laravel-model-status", - "version": "1.14.0", + "version": "1.18.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-model-status.git", - "reference": "7ffee82bf3017f22c030acd1b174f161be8a36fa" + "reference": "c84bbed462b962474b993ca0ab901707f9b0ed7f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-model-status/zipball/7ffee82bf3017f22c030acd1b174f161be8a36fa", - "reference": "7ffee82bf3017f22c030acd1b174f161be8a36fa", + "url": "https://api.github.com/repos/spatie/laravel-model-status/zipball/c84bbed462b962474b993ca0ab901707f9b0ed7f", + "reference": "c84bbed462b962474b993ca0ab901707f9b0ed7f", "shasum": "" }, "require": { - "illuminate/support": "^8.71|^9.0|^10.0", - "php": "^8.0|^8.1" + "illuminate/support": "^10.0|^11.0", + "php": "^8.2" }, "require-dev": { - "orchestra/testbench": "^6.6|^7.0|^8.0", - "pestphp/pest": "^1.22", - "phpunit/phpunit": "^9.5" + "orchestra/testbench": "^8.0|^9.0", + "pestphp/pest": "^2.34" }, "type": "library", "extra": { @@ -10151,7 +10081,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-model-status/issues", - "source": "https://github.com/spatie/laravel-model-status/tree/1.14.0" + "source": "https://github.com/spatie/laravel-model-status/tree/1.18.0" }, "funding": [ { @@ -10159,39 +10089,39 @@ "type": "custom" } ], - "time": "2023-06-17T22:10:37+00:00" + "time": "2024-05-27T09:27:53+00:00" }, { "name": "spatie/laravel-options", - "version": "1.1.0", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/spatie/laravel-options.git", - "reference": "5bed29084853dd97355ea055c017c27614900b2c" + "reference": "150e6cf9f9cf2df747946f1702f21512cfdd6646" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-options/zipball/5bed29084853dd97355ea055c017c27614900b2c", - "reference": "5bed29084853dd97355ea055c017c27614900b2c", + "url": "https://api.github.com/repos/spatie/laravel-options/zipball/150e6cf9f9cf2df747946f1702f21512cfdd6646", + "reference": "150e6cf9f9cf2df747946f1702f21512cfdd6646", "shasum": "" }, "require": { - "illuminate/contracts": "^8.81|^9.0|^10.0", + "illuminate/contracts": "^8.81|^9.0|^10.0|^11.0", "php": "^8.1", "spatie/laravel-package-tools": "^1.9.2" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.8", "myclabs/php-enum": "^1.6", - "nunomaduro/collision": "^6.0|^5.0", + "nunomaduro/collision": "^6.0|^5.0|^8.0", "nunomaduro/larastan": "^2.0.1|^1.0.3", - "orchestra/testbench": "^7.0|^v6.24.1|^8.0", - "pestphp/pest": "^v1.21.3", - "pestphp/pest-plugin-laravel": "^1.1", + "orchestra/testbench": "^7.0|^v6.24.1|^8.0|^9.0", + "pestphp/pest": "^v1.21.3|^2.34", + "pestphp/pest-plugin-laravel": "^1.1|^2.3", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^9.5", + "phpunit/phpunit": "^9.5|^10.5", "spatie/enum": "^3.13", "spatie/laravel-model-states": "^2.0", "spatie/laravel-ray": "^1.26" @@ -10229,26 +10159,26 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-options/tree/1.1.0" + "source": "https://github.com/spatie/laravel-options/tree/1.1.1" }, - "time": "2023-02-09T15:07:29+00:00" + "time": "2024-02-27T14:48:21+00:00" }, { "name": "spatie/laravel-package-tools", - "version": "1.16.1", + "version": "1.16.5", "source": { "type": "git", "url": "https://github.com/spatie/laravel-package-tools.git", - "reference": "cc7c991555a37f9fa6b814aa03af73f88026a83d" + "reference": "c7413972cf22ffdff97b68499c22baa04eddb6a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/cc7c991555a37f9fa6b814aa03af73f88026a83d", - "reference": "cc7c991555a37f9fa6b814aa03af73f88026a83d", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/c7413972cf22ffdff97b68499c22baa04eddb6a2", + "reference": "c7413972cf22ffdff97b68499c22baa04eddb6a2", "shasum": "" }, "require": { - "illuminate/contracts": "^9.28|^10.0", + "illuminate/contracts": "^9.28|^10.0|^11.0", "php": "^8.0" }, "require-dev": { @@ -10283,7 +10213,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-package-tools/issues", - "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.1" + "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.5" }, "funding": [ { @@ -10291,7 +10221,7 @@ "type": "github" } ], - "time": "2023-08-23T09:04:39+00:00" + "time": "2024-08-27T18:56:10+00:00" }, { "name": "spatie/laravel-permission", @@ -10377,43 +10307,45 @@ }, { "name": "spatie/laravel-ray", - "version": "1.33.0", + "version": "1.37.1", "source": { "type": "git", "url": "https://github.com/spatie/laravel-ray.git", - "reference": "5028ae44a09451b26eb44490e3471998650788e3" + "reference": "c2bedfd1172648df2c80aaceb2541d70f1d9a5b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/5028ae44a09451b26eb44490e3471998650788e3", - "reference": "5028ae44a09451b26eb44490e3471998650788e3", + "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/c2bedfd1172648df2c80aaceb2541d70f1d9a5b9", + "reference": "c2bedfd1172648df2c80aaceb2541d70f1d9a5b9", "shasum": "" }, "require": { "ext-json": "*", - "illuminate/contracts": "^7.20|^8.19|^9.0|^10.0", - "illuminate/database": "^7.20|^8.19|^9.0|^10.0", - "illuminate/queue": "^7.20|^8.19|^9.0|^10.0", - "illuminate/support": "^7.20|^8.19|^9.0|^10.0", + "illuminate/contracts": "^7.20|^8.19|^9.0|^10.0|^11.0", + "illuminate/database": "^7.20|^8.19|^9.0|^10.0|^11.0", + "illuminate/queue": "^7.20|^8.19|^9.0|^10.0|^11.0", + "illuminate/support": "^7.20|^8.19|^9.0|^10.0|^11.0", "php": "^7.4|^8.0", + "rector/rector": "^0.19.2|^1.0", "spatie/backtrace": "^1.0", - "spatie/ray": "^1.37", - "symfony/stopwatch": "4.2|^5.1|^6.0", - "zbateson/mail-mime-parser": "^1.3.1|^2.0" + "spatie/ray": "^1.41.1", + "symfony/stopwatch": "4.2|^5.1|^6.0|^7.0", + "zbateson/mail-mime-parser": "^1.3.1|^2.0|^3.0" }, "require-dev": { "guzzlehttp/guzzle": "^7.3", - "laravel/framework": "^7.20|^8.19|^9.0|^10.0", - "orchestra/testbench-core": "^5.0|^6.0|^7.0|^8.0", - "pestphp/pest": "^1.22", - "phpstan/phpstan": "^0.12.93", - "phpunit/phpunit": "^9.3", - "spatie/pest-plugin-snapshots": "^1.1" + "laravel/framework": "^7.20|^8.19|^9.0|^10.0|^11.0", + "orchestra/testbench-core": "^5.0|^6.0|^7.0|^8.0|^9.0", + "pestphp/pest": "^1.22|^2.0", + "phpstan/phpstan": "^1.10.57", + "phpunit/phpunit": "^9.3|^10.1", + "spatie/pest-plugin-snapshots": "^1.1|^2.0", + "symfony/var-dumper": "^4.2|^5.1|^6.0|^7.0.3" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.29.x-dev" + "dev-main": "1.x-dev" }, "laravel": { "providers": [ @@ -10446,7 +10378,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-ray/issues", - "source": "https://github.com/spatie/laravel-ray/tree/1.33.0" + "source": "https://github.com/spatie/laravel-ray/tree/1.37.1" }, "funding": [ { @@ -10458,30 +10390,30 @@ "type": "other" } ], - "time": "2023-09-04T10:16:53+00:00" + "time": "2024-07-12T12:35:17+00:00" }, { "name": "spatie/laravel-sluggable", - "version": "3.5.0", + "version": "3.6.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-sluggable.git", - "reference": "041af2533fe2206715e9a4a9cad2cab6cb796655" + "reference": "a44afe6f317959bcfdadcec3148486859fd5c1f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-sluggable/zipball/041af2533fe2206715e9a4a9cad2cab6cb796655", - "reference": "041af2533fe2206715e9a4a9cad2cab6cb796655", + "url": "https://api.github.com/repos/spatie/laravel-sluggable/zipball/a44afe6f317959bcfdadcec3148486859fd5c1f5", + "reference": "a44afe6f317959bcfdadcec3148486859fd5c1f5", "shasum": "" }, "require": { - "illuminate/database": "^8.0|^9.0|^10.0", - "illuminate/support": "^8.0|^9.0|^10.0", + "illuminate/database": "^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", "php": "^8.0" }, "require-dev": { - "orchestra/testbench": "^6.23|^7.0|^8.0", - "pestphp/pest": "^1.20", + "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0", + "pestphp/pest": "^1.20|^2.0", "spatie/laravel-translatable": "^5.0|^6.0" }, "type": "library", @@ -10509,7 +10441,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-sluggable/tree/3.5.0" + "source": "https://github.com/spatie/laravel-sluggable/tree/3.6.0" }, "funding": [ { @@ -10517,33 +10449,33 @@ "type": "github" } ], - "time": "2023-05-29T09:42:35+00:00" + "time": "2024-02-26T08:33:29+00:00" }, { "name": "spatie/laravel-tags", - "version": "4.5.1", + "version": "4.6.1", "source": { "type": "git", "url": "https://github.com/spatie/laravel-tags.git", - "reference": "fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa" + "reference": "73944e8bd7a341269c03959fe063d8714adbe5a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-tags/zipball/fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa", - "reference": "fcc6c532fa0ce0d1eefe886fd44dcedcca3173aa", + "url": "https://api.github.com/repos/spatie/laravel-tags/zipball/73944e8bd7a341269c03959fe063d8714adbe5a6", + "reference": "73944e8bd7a341269c03959fe063d8714adbe5a6", "shasum": "" }, "require": { - "laravel/framework": "^8.67|^9.0|^10.0", - "nesbot/carbon": "^2.63", + "laravel/framework": "^8.67|^9.0|^10.0|^11.0", + "nesbot/carbon": "^2.63|^3.0", "php": "^8.0", "spatie/eloquent-sortable": "^3.10|^4.0", "spatie/laravel-package-tools": "^1.4", "spatie/laravel-translatable": "^4.6|^5.0|^6.0" }, "require-dev": { - "orchestra/testbench": "^6.13|^7.0|^8.0", - "pestphp/pest": "^1.22", + "orchestra/testbench": "^6.13|^7.0|^8.0|^9.0", + "pestphp/pest": "^1.22|^2.0", "phpunit/phpunit": "^9.5.2" }, "type": "library", @@ -10579,7 +10511,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-tags/issues", - "source": "https://github.com/spatie/laravel-tags/tree/4.5.1" + "source": "https://github.com/spatie/laravel-tags/tree/4.6.1" }, "funding": [ { @@ -10587,32 +10519,32 @@ "type": "github" } ], - "time": "2023-07-31T08:43:55+00:00" + "time": "2024-03-01T12:44:53+00:00" }, { "name": "spatie/laravel-translatable", - "version": "6.5.5", + "version": "6.8.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-translatable.git", - "reference": "d6dc7c9fe3c678ce50b2d6a4a7434fcbcfc3df4c" + "reference": "0ef7e8e9d65bb834b7c68f22ec362a6179f50381" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/d6dc7c9fe3c678ce50b2d6a4a7434fcbcfc3df4c", - "reference": "d6dc7c9fe3c678ce50b2d6a4a7434fcbcfc3df4c", + "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/0ef7e8e9d65bb834b7c68f22ec362a6179f50381", + "reference": "0ef7e8e9d65bb834b7c68f22ec362a6179f50381", "shasum": "" }, "require": { - "illuminate/database": "^9.0|^10.0", - "illuminate/support": "^9.0|^10.0", + "illuminate/database": "^9.0|^10.0|^11.0", + "illuminate/support": "^9.0|^10.0|^11.0", "php": "^8.0", "spatie/laravel-package-tools": "^1.11" }, "require-dev": { "mockery/mockery": "^1.4", - "orchestra/testbench": "^7.0|^8.0", - "pestphp/pest": "^1.20" + "orchestra/testbench": "^7.0|^8.0|^9.0", + "pestphp/pest": "^1.20|^2.0" }, "type": "library", "extra": { @@ -10661,7 +10593,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-translatable/issues", - "source": "https://github.com/spatie/laravel-translatable/tree/6.5.5" + "source": "https://github.com/spatie/laravel-translatable/tree/6.8.0" }, "funding": [ { @@ -10669,7 +10601,7 @@ "type": "github" } ], - "time": "2023-12-06T10:56:22+00:00" + "time": "2024-07-24T14:26:27+00:00" }, { "name": "spatie/macroable", @@ -10723,16 +10655,16 @@ }, { "name": "spatie/nova-tags-field", - "version": "4.0.7", + "version": "4.0.8", "source": { "type": "git", "url": "https://github.com/spatie/nova-tags-field.git", - "reference": "10f62262fa1b701bbb4708fe148251a0503ef5eb" + "reference": "ffa166d7ec0d0271d473917d11396896df7e1a03" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/nova-tags-field/zipball/10f62262fa1b701bbb4708fe148251a0503ef5eb", - "reference": "10f62262fa1b701bbb4708fe148251a0503ef5eb", + "url": "https://api.github.com/repos/spatie/nova-tags-field/zipball/ffa166d7ec0d0271d473917d11396896df7e1a03", + "reference": "ffa166d7ec0d0271d473917d11396896df7e1a03", "shasum": "" }, "require": { @@ -10777,7 +10709,7 @@ "nova" ], "support": { - "source": "https://github.com/spatie/nova-tags-field/tree/4.0.7" + "source": "https://github.com/spatie/nova-tags-field/tree/4.0.8" }, "funding": [ { @@ -10785,20 +10717,20 @@ "type": "custom" } ], - "time": "2023-07-27T08:44:52+00:00" + "time": "2024-05-01T09:48:52+00:00" }, { "name": "spatie/once", - "version": "3.1.0", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/spatie/once.git", - "reference": "aab3fc8694e7caec98b2d330c4a8420391c7559d" + "reference": "25252b821765d72566be17c52ea05b35329f0f8f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/once/zipball/aab3fc8694e7caec98b2d330c4a8420391c7559d", - "reference": "aab3fc8694e7caec98b2d330c4a8420391c7559d", + "url": "https://api.github.com/repos/spatie/once/zipball/25252b821765d72566be17c52ea05b35329f0f8f", + "reference": "25252b821765d72566be17c52ea05b35329f0f8f", "shasum": "" }, "require": { @@ -10839,7 +10771,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/once/tree/3.1.0" + "source": "https://github.com/spatie/once/tree/3.1.1" }, "funding": [ { @@ -10847,20 +10779,20 @@ "type": "custom" } ], - "time": "2022-04-21T12:23:20+00:00" + "time": "2024-05-27T09:17:58+00:00" }, { "name": "spatie/ray", - "version": "1.40.1", + "version": "1.41.2", "source": { "type": "git", "url": "https://github.com/spatie/ray.git", - "reference": "8e6547ff47aae2e4f615a5dcea1e5e4911b1dc9f" + "reference": "c44f8cfbf82c69909b505de61d8d3f2d324e93fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/ray/zipball/8e6547ff47aae2e4f615a5dcea1e5e4911b1dc9f", - "reference": "8e6547ff47aae2e4f615a5dcea1e5e4911b1dc9f", + "url": "https://api.github.com/repos/spatie/ray/zipball/c44f8cfbf82c69909b505de61d8d3f2d324e93fc", + "reference": "c44f8cfbf82c69909b505de61d8d3f2d324e93fc", "shasum": "" }, "require": { @@ -10870,8 +10802,8 @@ "ramsey/uuid": "^3.0|^4.1", "spatie/backtrace": "^1.1", "spatie/macroable": "^1.0|^2.0", - "symfony/stopwatch": "^4.0|^5.1|^6.0", - "symfony/var-dumper": "^4.2|^5.1|^6.0" + "symfony/stopwatch": "^4.0|^5.1|^6.0|^7.0", + "symfony/var-dumper": "^4.2|^5.1|^6.0|^7.0.3" }, "require-dev": { "illuminate/support": "6.x|^8.18|^9.0", @@ -10879,10 +10811,19 @@ "pestphp/pest": "^1.22", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5", + "rector/rector": "^0.19.2", "spatie/phpunit-snapshot-assertions": "^4.2", "spatie/test-time": "^1.2" }, + "bin": [ + "bin/remove-ray.sh" + ], "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, "autoload": { "files": [ "src/helpers.php" @@ -10911,7 +10852,7 @@ ], "support": { "issues": "https://github.com/spatie/ray/issues", - "source": "https://github.com/spatie/ray/tree/1.40.1" + "source": "https://github.com/spatie/ray/tree/1.41.2" }, "funding": [ { @@ -10923,23 +10864,24 @@ "type": "other" } ], - "time": "2023-11-20T08:20:15+00:00" + "time": "2024-04-24T14:21:46+00:00" }, { "name": "spatie/shiki-php", - "version": "1.3.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/spatie/shiki-php.git", - "reference": "34fe61405b405c735c82a9c56feffd3f7c5544ff" + "reference": "b4bd54222c40b44800aabce0a4382e0c463b5901" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/shiki-php/zipball/34fe61405b405c735c82a9c56feffd3f7c5544ff", - "reference": "34fe61405b405c735c82a9c56feffd3f7c5544ff", + "url": "https://api.github.com/repos/spatie/shiki-php/zipball/b4bd54222c40b44800aabce0a4382e0c463b5901", + "reference": "b4bd54222c40b44800aabce0a4382e0c463b5901", "shasum": "" }, "require": { + "ext-json": "*", "php": "^7.4|^8.0" }, "require-dev": { @@ -10978,7 +10920,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/shiki-php/tree/1.3.0" + "source": "https://github.com/spatie/shiki-php/tree/2.0.0" }, "funding": [ { @@ -10986,20 +10928,20 @@ "type": "github" } ], - "time": "2022-06-01T11:28:41+00:00" + "time": "2024-02-19T09:00:59+00:00" }, { "name": "spatie/temporary-directory", - "version": "2.2.0", + "version": "2.2.1", "source": { "type": "git", "url": "https://github.com/spatie/temporary-directory.git", - "reference": "efc258c9f4da28f0c7661765b8393e4ccee3d19c" + "reference": "76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/efc258c9f4da28f0c7661765b8393e4ccee3d19c", - "reference": "efc258c9f4da28f0c7661765b8393e4ccee3d19c", + "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a", + "reference": "76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a", "shasum": "" }, "require": { @@ -11035,7 +10977,7 @@ ], "support": { "issues": "https://github.com/spatie/temporary-directory/issues", - "source": "https://github.com/spatie/temporary-directory/tree/2.2.0" + "source": "https://github.com/spatie/temporary-directory/tree/2.2.1" }, "funding": [ { @@ -11047,20 +10989,20 @@ "type": "github" } ], - "time": "2023-09-25T07:13:36+00:00" + "time": "2023-12-25T11:46:58+00:00" }, { "name": "staudenmeir/eloquent-has-many-deep", - "version": "v1.19", + "version": "v1.19.4", "source": { "type": "git", "url": "https://github.com/staudenmeir/eloquent-has-many-deep.git", - "reference": "7a858ba0bfe5d42c06c563175a7255ebb6abad27" + "reference": "d9651c2c64d34a8fd4c680090d3521ed136f2ead" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/staudenmeir/eloquent-has-many-deep/zipball/7a858ba0bfe5d42c06c563175a7255ebb6abad27", - "reference": "7a858ba0bfe5d42c06c563175a7255ebb6abad27", + "url": "https://api.github.com/repos/staudenmeir/eloquent-has-many-deep/zipball/d9651c2c64d34a8fd4c680090d3521ed136f2ead", + "reference": "d9651c2c64d34a8fd4c680090d3521ed136f2ead", "shasum": "" }, "require": { @@ -11085,7 +11027,7 @@ "extra": { "laravel": { "providers": [ - "Staudenmeir\\EloquentHasManyDeep\\EloquentHasManyDeepServiceProvider" + "Staudenmeir\\EloquentHasManyDeep\\IdeHelperServiceProvider" ] } }, @@ -11107,7 +11049,7 @@ "description": "Laravel Eloquent HasManyThrough relationships with unlimited levels", "support": { "issues": "https://github.com/staudenmeir/eloquent-has-many-deep/issues", - "source": "https://github.com/staudenmeir/eloquent-has-many-deep/tree/v1.19" + "source": "https://github.com/staudenmeir/eloquent-has-many-deep/tree/v1.19.4" }, "funding": [ { @@ -11115,7 +11057,7 @@ "type": "custom" } ], - "time": "2023-12-05T11:38:39+00:00" + "time": "2024-05-25T09:46:08+00:00" }, { "name": "staudenmeir/eloquent-has-many-deep-contracts", @@ -11218,16 +11160,16 @@ }, { "name": "symfony/console", - "version": "v6.4.1", + "version": "v6.4.11", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd" + "reference": "42686880adaacdad1835ee8fc2a9ec5b7bd63998" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/a550a7c99daeedef3f9d23fb82e3531525ff11fd", - "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd", + "url": "https://api.github.com/repos/symfony/console/zipball/42686880adaacdad1835ee8fc2a9ec5b7bd63998", + "reference": "42686880adaacdad1835ee8fc2a9ec5b7bd63998", "shasum": "" }, "require": { @@ -11292,7 +11234,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.4.1" + "source": "https://github.com/symfony/console/tree/v6.4.11" }, "funding": [ { @@ -11308,24 +11250,24 @@ "type": "tidelift" } ], - "time": "2023-11-30T10:54:28+00:00" + "time": "2024-08-15T22:48:29+00:00" }, { "name": "symfony/css-selector", - "version": "v6.4.0", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "d036c6c0d0b09e24a14a35f8292146a658f986e4" + "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/d036c6c0d0b09e24a14a35f8292146a658f986e4", - "reference": "d036c6c0d0b09e24a14a35f8292146a658f986e4", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4", + "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "type": "library", "autoload": { @@ -11357,7 +11299,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v6.4.0" + "source": "https://github.com/symfony/css-selector/tree/v7.1.1" }, "funding": [ { @@ -11373,20 +11315,20 @@ "type": "tidelift" } ], - "time": "2023-10-31T08:40:20+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v3.4.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", - "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", "shasum": "" }, "require": { @@ -11395,7 +11337,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -11424,7 +11366,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.4.0" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" }, "funding": [ { @@ -11440,20 +11382,20 @@ "type": "tidelift" } ], - "time": "2023-05-23T14:45:45+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/error-handler", - "version": "v6.4.0", + "version": "v6.4.10", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "c873490a1c97b3a0a4838afc36ff36c112d02788" + "reference": "231f1b2ee80f72daa1972f7340297d67439224f0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/c873490a1c97b3a0a4838afc36ff36c112d02788", - "reference": "c873490a1c97b3a0a4838afc36ff36c112d02788", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/231f1b2ee80f72daa1972f7340297d67439224f0", + "reference": "231f1b2ee80f72daa1972f7340297d67439224f0", "shasum": "" }, "require": { @@ -11499,7 +11441,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/v6.4.0" + "source": "https://github.com/symfony/error-handler/tree/v6.4.10" }, "funding": [ { @@ -11515,20 +11457,20 @@ "type": "tidelift" } ], - "time": "2023-10-18T09:43:34+00:00" + "time": "2024-07-26T12:30:32+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v7.0.0", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "c459b40ffe67c49af6fd392aac374c9edf8a027e" + "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c459b40ffe67c49af6fd392aac374c9edf8a027e", - "reference": "c459b40ffe67c49af6fd392aac374c9edf8a027e", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7", + "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7", "shasum": "" }, "require": { @@ -11579,7 +11521,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.0.0" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1" }, "funding": [ { @@ -11595,20 +11537,20 @@ "type": "tidelift" } ], - "time": "2023-07-27T16:29:09+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.4.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50", "shasum": "" }, "require": { @@ -11618,7 +11560,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -11655,7 +11597,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0" }, "funding": [ { @@ -11671,20 +11613,20 @@ "type": "tidelift" } ], - "time": "2023-05-23T14:45:45+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/finder", - "version": "v6.4.0", + "version": "v6.4.11", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce" + "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce", + "url": "https://api.github.com/repos/symfony/finder/zipball/d7eb6daf8cd7e9ac4976e9576b32042ef7253453", + "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453", "shasum": "" }, "require": { @@ -11719,7 +11661,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.0" + "source": "https://github.com/symfony/finder/tree/v6.4.11" }, "funding": [ { @@ -11735,96 +11677,27 @@ "type": "tidelift" } ], - "time": "2023-10-31T17:30:12+00:00" - }, - { - "name": "symfony/html-sanitizer", - "version": "v6.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/html-sanitizer.git", - "reference": "9cc71f272eb62504872c80845074f236e8e43536" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/9cc71f272eb62504872c80845074f236e8e43536", - "reference": "9cc71f272eb62504872c80845074f236e8e43536", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "league/uri": "^6.5|^7.0", - "masterminds/html5": "^2.7.2", - "php": ">=8.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\HtmlSanitizer\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Titouan Galopin", - "email": "galopintitouan@gmail.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.", - "homepage": "https://symfony.com", - "keywords": [ - "Purifier", - "html", - "sanitizer" - ], - "support": { - "source": "https://github.com/symfony/html-sanitizer/tree/v6.4.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2023-10-28T23:12:08+00:00" + "time": "2024-08-13T14:27:37+00:00" }, { "name": "symfony/http-client", - "version": "v6.4.0", + "version": "v6.4.11", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "5c584530b77aa10ae216989ffc48b4bedc9c0b29" + "reference": "4c92046bb788648ff1098cc66da69aa7eac8cb65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/5c584530b77aa10ae216989ffc48b4bedc9c0b29", - "reference": "5c584530b77aa10ae216989ffc48b4bedc9c0b29", + "url": "https://api.github.com/repos/symfony/http-client/zipball/4c92046bb788648ff1098cc66da69aa7eac8cb65", + "reference": "4c92046bb788648ff1098cc66da69aa7eac8cb65", "shasum": "" }, "require": { "php": ">=8.1", "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/http-client-contracts": "^3", + "symfony/http-client-contracts": "^3.4.1", "symfony/service-contracts": "^2.5|^3" }, "conflict": { @@ -11842,7 +11715,7 @@ "amphp/http-client": "^4.2.1", "amphp/http-tunnel": "^1.0", "amphp/socket": "^1.1", - "guzzlehttp/promises": "^1.4", + "guzzlehttp/promises": "^1.4|^2.0", "nyholm/psr7": "^1.0", "php-http/httplug": "^1.0|^2.0", "psr/http-client": "^1.0", @@ -11881,7 +11754,7 @@ "http" ], "support": { - "source": "https://github.com/symfony/http-client/tree/v6.4.0" + "source": "https://github.com/symfony/http-client/tree/v6.4.11" }, "funding": [ { @@ -11897,20 +11770,20 @@ "type": "tidelift" } ], - "time": "2023-11-28T20:55:58+00:00" + "time": "2024-08-26T06:30:21+00:00" }, { "name": "symfony/http-client-contracts", - "version": "v3.4.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "1ee70e699b41909c209a0c930f11034b93578654" + "reference": "20414d96f391677bf80078aa55baece78b82647d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1ee70e699b41909c209a0c930f11034b93578654", - "reference": "1ee70e699b41909c209a0c930f11034b93578654", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d", + "reference": "20414d96f391677bf80078aa55baece78b82647d", "shasum": "" }, "require": { @@ -11919,7 +11792,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -11959,7 +11832,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0" }, "funding": [ { @@ -11975,20 +11848,20 @@ "type": "tidelift" } ], - "time": "2023-07-30T20:28:31+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.4.0", + "version": "v6.4.10", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "44a6d39a9cc11e154547d882d5aac1e014440771" + "reference": "117f1f20a7ade7bcea28b861fb79160a21a1e37b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/44a6d39a9cc11e154547d882d5aac1e014440771", - "reference": "44a6d39a9cc11e154547d882d5aac1e014440771", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/117f1f20a7ade7bcea28b861fb79160a21a1e37b", + "reference": "117f1f20a7ade7bcea28b861fb79160a21a1e37b", "shasum": "" }, "require": { @@ -12036,7 +11909,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.4.0" + "source": "https://github.com/symfony/http-foundation/tree/v6.4.10" }, "funding": [ { @@ -12052,20 +11925,20 @@ "type": "tidelift" } ], - "time": "2023-11-20T16:41:16+00:00" + "time": "2024-07-26T12:36:27+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.4.1", + "version": "v6.4.11", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "2953274c16a229b3933ef73a6898e18388e12e1b" + "reference": "1ba6b89d781cb47448155cc70dd2e0f1b0584c79" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2953274c16a229b3933ef73a6898e18388e12e1b", - "reference": "2953274c16a229b3933ef73a6898e18388e12e1b", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1ba6b89d781cb47448155cc70dd2e0f1b0584c79", + "reference": "1ba6b89d781cb47448155cc70dd2e0f1b0584c79", "shasum": "" }, "require": { @@ -12114,12 +11987,13 @@ "symfony/process": "^5.4|^6.0|^7.0", "symfony/property-access": "^5.4.5|^6.0.5|^7.0", "symfony/routing": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.3|^7.0", + "symfony/serializer": "^6.4.4|^7.0.4", "symfony/stopwatch": "^5.4|^6.0|^7.0", "symfony/translation": "^5.4|^6.0|^7.0", "symfony/translation-contracts": "^2.5|^3", "symfony/uid": "^5.4|^6.0|^7.0", "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^5.4|^6.4|^7.0", "symfony/var-exporter": "^6.2|^7.0", "twig/twig": "^2.13|^3.0.4" }, @@ -12149,7 +12023,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/v6.4.1" + "source": "https://github.com/symfony/http-kernel/tree/v6.4.11" }, "funding": [ { @@ -12165,20 +12039,20 @@ "type": "tidelift" } ], - "time": "2023-12-01T17:02:02+00:00" + "time": "2024-08-30T16:57:20+00:00" }, { "name": "symfony/mailer", - "version": "v6.4.0", + "version": "v6.4.9", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "ca8dcf8892cdc5b4358ecf2528429bb5e706f7ba" + "reference": "e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/ca8dcf8892cdc5b4358ecf2528429bb5e706f7ba", - "reference": "ca8dcf8892cdc5b4358ecf2528429bb5e706f7ba", + "url": "https://api.github.com/repos/symfony/mailer/zipball/e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45", + "reference": "e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45", "shasum": "" }, "require": { @@ -12229,7 +12103,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v6.4.0" + "source": "https://github.com/symfony/mailer/tree/v6.4.9" }, "funding": [ { @@ -12245,20 +12119,20 @@ "type": "tidelift" } ], - "time": "2023-11-12T18:02:22+00:00" + "time": "2024-06-28T07:59:05+00:00" }, { "name": "symfony/mailgun-mailer", - "version": "v6.4.0", + "version": "v6.4.10", "source": { "type": "git", "url": "https://github.com/symfony/mailgun-mailer.git", - "reference": "72d2f72f2016e559d0152188bef5a5dc9ebf5ec7" + "reference": "3eb7c7b644179a766f5d816620b7b6d4a4e7ec43" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/72d2f72f2016e559d0152188bef5a5dc9ebf5ec7", - "reference": "72d2f72f2016e559d0152188bef5a5dc9ebf5ec7", + "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/3eb7c7b644179a766f5d816620b7b6d4a4e7ec43", + "reference": "3eb7c7b644179a766f5d816620b7b6d4a4e7ec43", "shasum": "" }, "require": { @@ -12298,7 +12172,7 @@ "description": "Symfony Mailgun Mailer Bridge", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailgun-mailer/tree/v6.4.0" + "source": "https://github.com/symfony/mailgun-mailer/tree/v6.4.10" }, "funding": [ { @@ -12314,20 +12188,20 @@ "type": "tidelift" } ], - "time": "2023-11-06T17:20:05+00:00" + "time": "2024-07-04T11:16:22+00:00" }, { "name": "symfony/mime", - "version": "v6.4.0", + "version": "v6.4.11", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205" + "reference": "dba5d5f6073baf7a3576b580cc4a208b4ca00553" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/ca4f58b2ef4baa8f6cecbeca2573f88cd577d205", - "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205", + "url": "https://api.github.com/repos/symfony/mime/zipball/dba5d5f6073baf7a3576b580cc4a208b4ca00553", + "reference": "dba5d5f6073baf7a3576b580cc4a208b4ca00553", "shasum": "" }, "require": { @@ -12341,16 +12215,17 @@ "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", "symfony/mailer": "<5.4", - "symfony/serializer": "<6.3.2" + "symfony/serializer": "<6.4.3|>7.0,<7.0.3" }, "require-dev": { "egulias/email-validator": "^2.1.10|^3.1|^4", "league/html-to-markdown": "^5.0", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.4|^7.0", "symfony/property-access": "^5.4|^6.0|^7.0", "symfony/property-info": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.3.2|^7.0" + "symfony/serializer": "^6.4.3|^7.0.3" }, "type": "library", "autoload": { @@ -12382,7 +12257,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.4.0" + "source": "https://github.com/symfony/mime/tree/v6.4.11" }, "funding": [ { @@ -12398,20 +12273,20 @@ "type": "tidelift" } ], - "time": "2023-10-17T11:49:05+00:00" + "time": "2024-08-13T12:15:02+00:00" }, { "name": "symfony/options-resolver", - "version": "v7.0.0", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "700ff4096e346f54cb628ea650767c8130f1001f" + "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/700ff4096e346f54cb628ea650767c8130f1001f", - "reference": "700ff4096e346f54cb628ea650767c8130f1001f", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55", + "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55", "shasum": "" }, "require": { @@ -12449,7 +12324,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v7.0.0" + "source": "https://github.com/symfony/options-resolver/tree/v7.1.1" }, "funding": [ { @@ -12465,20 +12340,20 @@ "type": "tidelift" } ], - "time": "2023-08-08T10:20:21+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" + "reference": "0424dff1c58f028c451efff2045f5d92410bd540" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", - "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540", + "reference": "0424dff1c58f028c451efff2045f5d92410bd540", "shasum": "" }, "require": { @@ -12492,9 +12367,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -12531,7 +12403,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" }, "funding": [ { @@ -12547,20 +12419,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1" + "reference": "c027e6a3c6aee334663ec21f5852e89738abc805" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1", - "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c027e6a3c6aee334663ec21f5852e89738abc805", + "reference": "c027e6a3c6aee334663ec21f5852e89738abc805", "shasum": "" }, "require": { @@ -12574,9 +12446,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -12614,7 +12483,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.30.0" }, "funding": [ { @@ -12630,20 +12499,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "875e90aeea2777b6f135677f618529449334a612" + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", - "reference": "875e90aeea2777b6f135677f618529449334a612", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a", + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a", "shasum": "" }, "require": { @@ -12654,9 +12523,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -12695,7 +12561,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" }, "funding": [ { @@ -12711,20 +12577,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-icu", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "e46b4da57951a16053cd751f63f4a24292788157" + "reference": "e76343c631b453088e2260ac41dfebe21954de81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e46b4da57951a16053cd751f63f4a24292788157", - "reference": "e46b4da57951a16053cd751f63f4a24292788157", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e76343c631b453088e2260ac41dfebe21954de81", + "reference": "e76343c631b453088e2260ac41dfebe21954de81", "shasum": "" }, "require": { @@ -12735,9 +12601,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -12782,7 +12645,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.30.0" }, "funding": [ { @@ -12798,20 +12661,20 @@ "type": "tidelift" } ], - "time": "2023-03-21T17:27:24+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", - "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", "shasum": "" }, "require": { @@ -12824,9 +12687,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -12869,7 +12729,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0" }, "funding": [ { @@ -12885,20 +12745,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:30:37+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb", + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb", "shasum": "" }, "require": { @@ -12909,9 +12769,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -12953,7 +12810,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" }, "funding": [ { @@ -12969,20 +12826,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "42292d99c55abe617799667f454222c54c60e229" + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", - "reference": "42292d99c55abe617799667f454222c54c60e229", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c", "shasum": "" }, "require": { @@ -12996,9 +12853,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -13036,7 +12890,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" }, "funding": [ { @@ -13052,20 +12906,20 @@ "type": "tidelift" } ], - "time": "2023-07-28T09:04:16+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179" + "reference": "10112722600777e02d2745716b70c5db4ca70442" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", - "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442", + "reference": "10112722600777e02d2745716b70c5db4ca70442", "shasum": "" }, "require": { @@ -13073,9 +12927,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -13112,7 +12963,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0" }, "funding": [ { @@ -13128,20 +12979,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" + "reference": "77fa7995ac1b21ab60769b7323d600a991a90433" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", - "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", + "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", "shasum": "" }, "require": { @@ -13149,9 +13000,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -13195,7 +13043,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0" }, "funding": [ { @@ -13211,31 +13059,27 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-php83", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" + "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", - "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9", + "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9", "shasum": "" }, "require": { - "php": ">=7.1", - "symfony/polyfill-php80": "^1.14" + "php": ">=7.1" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -13275,7 +13119,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0" }, "funding": [ { @@ -13291,20 +13135,20 @@ "type": "tidelift" } ], - "time": "2023-08-16T06:22:46+00:00" + "time": "2024-06-19T12:35:24+00:00" }, { "name": "symfony/polyfill-uuid", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-uuid.git", - "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e" + "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/9c44518a5aff8da565c8a55dbe85d2769e6f630e", - "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/2ba1f33797470debcda07fe9dce20a0003df18e9", + "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9", "shasum": "" }, "require": { @@ -13318,9 +13162,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -13357,7 +13198,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/polyfill-uuid/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.30.0" }, "funding": [ { @@ -13373,20 +13214,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/process", - "version": "v6.4.0", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "191703b1566d97a5425dc969e4350d32b8ef17aa" + "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/191703b1566d97a5425dc969e4350d32b8ef17aa", - "reference": "191703b1566d97a5425dc969e4350d32b8ef17aa", + "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5", + "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5", "shasum": "" }, "require": { @@ -13418,7 +13259,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.4.0" + "source": "https://github.com/symfony/process/tree/v6.4.8" }, "funding": [ { @@ -13434,7 +13275,7 @@ "type": "tidelift" } ], - "time": "2023-11-17T21:06:49+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/psr-http-message-bridge", @@ -13527,16 +13368,16 @@ }, { "name": "symfony/routing", - "version": "v6.4.1", + "version": "v6.4.11", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "0c95c164fdba18b12523b75e64199ca3503e6d40" + "reference": "8ee0c24c1bf61c263a26f1b9b6d19e83b1121f2a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/0c95c164fdba18b12523b75e64199ca3503e6d40", - "reference": "0c95c164fdba18b12523b75e64199ca3503e6d40", + "url": "https://api.github.com/repos/symfony/routing/zipball/8ee0c24c1bf61c263a26f1b9b6d19e83b1121f2a", + "reference": "8ee0c24c1bf61c263a26f1b9b6d19e83b1121f2a", "shasum": "" }, "require": { @@ -13590,7 +13431,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.4.1" + "source": "https://github.com/symfony/routing/tree/v6.4.11" }, "funding": [ { @@ -13606,25 +13447,26 @@ "type": "tidelift" } ], - "time": "2023-12-01T14:54:37+00:00" + "time": "2024-08-29T08:15:38+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.4.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838" + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b3313c2dbffaf71c8de2934e2ea56ed2291a3838", - "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", "shasum": "" }, "require": { "php": ">=8.1", - "psr/container": "^2.0" + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { "ext-psr": "<1.1|>=2" @@ -13632,7 +13474,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -13672,7 +13514,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" }, "funding": [ { @@ -13688,24 +13530,24 @@ "type": "tidelift" } ], - "time": "2023-07-30T20:28:31+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/stopwatch", - "version": "v6.4.0", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2" + "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2", - "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d", + "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/service-contracts": "^2.5|^3" }, "type": "library", @@ -13734,7 +13576,7 @@ "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v6.4.0" + "source": "https://github.com/symfony/stopwatch/tree/v7.1.1" }, "funding": [ { @@ -13750,20 +13592,20 @@ "type": "tidelift" } ], - "time": "2023-02-16T10:14:28+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/string", - "version": "v7.0.0", + "version": "v7.1.4", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "92bd2bfbba476d4a1838e5e12168bef2fd1e6620" + "reference": "6cd670a6d968eaeb1c77c2e76091c45c56bc367b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/92bd2bfbba476d4a1838e5e12168bef2fd1e6620", - "reference": "92bd2bfbba476d4a1838e5e12168bef2fd1e6620", + "url": "https://api.github.com/repos/symfony/string/zipball/6cd670a6d968eaeb1c77c2e76091c45c56bc367b", + "reference": "6cd670a6d968eaeb1c77c2e76091c45c56bc367b", "shasum": "" }, "require": { @@ -13777,6 +13619,7 @@ "symfony/translation-contracts": "<2.5" }, "require-dev": { + "symfony/emoji": "^7.1", "symfony/error-handler": "^6.4|^7.0", "symfony/http-client": "^6.4|^7.0", "symfony/intl": "^6.4|^7.0", @@ -13820,7 +13663,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.0.0" + "source": "https://github.com/symfony/string/tree/v7.1.4" }, "funding": [ { @@ -13836,20 +13679,20 @@ "type": "tidelift" } ], - "time": "2023-11-29T08:40:23+00:00" + "time": "2024-08-12T09:59:40+00:00" }, { "name": "symfony/translation", - "version": "v6.4.0", + "version": "v6.4.10", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "b1035dbc2a344b21f8fa8ac451c7ecec4ea45f37" + "reference": "94041203f8ac200ae9e7c6a18fa6137814ccecc9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/b1035dbc2a344b21f8fa8ac451c7ecec4ea45f37", - "reference": "b1035dbc2a344b21f8fa8ac451c7ecec4ea45f37", + "url": "https://api.github.com/repos/symfony/translation/zipball/94041203f8ac200ae9e7c6a18fa6137814ccecc9", + "reference": "94041203f8ac200ae9e7c6a18fa6137814ccecc9", "shasum": "" }, "require": { @@ -13872,7 +13715,7 @@ "symfony/translation-implementation": "2.3|3.0" }, "require-dev": { - "nikic/php-parser": "^4.13", + "nikic/php-parser": "^4.18|^5.0", "psr/log": "^1|^2|^3", "symfony/config": "^5.4|^6.0|^7.0", "symfony/console": "^5.4|^6.0|^7.0", @@ -13915,7 +13758,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v6.4.0" + "source": "https://github.com/symfony/translation/tree/v6.4.10" }, "funding": [ { @@ -13931,20 +13774,20 @@ "type": "tidelift" } ], - "time": "2023-11-29T08:14:36+00:00" + "time": "2024-07-26T12:30:32+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.4.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5" + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dee0c6e5b4c07ce851b462530088e64b255ac9c5", - "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", "shasum": "" }, "require": { @@ -13953,7 +13796,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -13993,7 +13836,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0" }, "funding": [ { @@ -14009,20 +13852,20 @@ "type": "tidelift" } ], - "time": "2023-07-25T15:08:44+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/uid", - "version": "v6.4.0", + "version": "v6.4.11", "source": { "type": "git", "url": "https://github.com/symfony/uid.git", - "reference": "8092dd1b1a41372110d06374f99ee62f7f0b9a92" + "reference": "6a0394ad707de386547223948fac1e0f2805bc0b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/uid/zipball/8092dd1b1a41372110d06374f99ee62f7f0b9a92", - "reference": "8092dd1b1a41372110d06374f99ee62f7f0b9a92", + "url": "https://api.github.com/repos/symfony/uid/zipball/6a0394ad707de386547223948fac1e0f2805bc0b", + "reference": "6a0394ad707de386547223948fac1e0f2805bc0b", "shasum": "" }, "require": { @@ -14067,7 +13910,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/uid/tree/v6.4.0" + "source": "https://github.com/symfony/uid/tree/v6.4.11" }, "funding": [ { @@ -14083,20 +13926,20 @@ "type": "tidelift" } ], - "time": "2023-10-31T08:18:17+00:00" + "time": "2024-08-12T09:55:28+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.4.0", + "version": "v6.4.11", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "c40f7d17e91d8b407582ed51a2bbf83c52c367f6" + "reference": "ee14c8254a480913268b1e3b1cba8045ed122694" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c40f7d17e91d8b407582ed51a2bbf83c52c367f6", - "reference": "c40f7d17e91d8b407582ed51a2bbf83c52c367f6", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ee14c8254a480913268b1e3b1cba8045ed122694", + "reference": "ee14c8254a480913268b1e3b1cba8045ed122694", "shasum": "" }, "require": { @@ -14152,7 +13995,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.4.0" + "source": "https://github.com/symfony/var-dumper/tree/v6.4.11" }, "funding": [ { @@ -14168,27 +14011,27 @@ "type": "tidelift" } ], - "time": "2023-11-09T08:28:32+00:00" + "time": "2024-08-30T16:03:21+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", - "version": "2.2.6", + "version": "v2.2.7", "source": { "type": "git", "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", - "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c" + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c", - "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb", + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "php": "^5.5 || ^7.0 || ^8.0", - "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" }, "require-dev": { "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" @@ -14219,29 +14062,29 @@ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", "support": { "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", - "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6" + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7" }, - "time": "2023-01-03T09:29:04+00:00" + "time": "2023-12-08T13:03:43+00:00" }, { "name": "vlucas/phpdotenv", - "version": "v5.6.0", + "version": "v5.6.1", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4" + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", - "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2", "shasum": "" }, "require": { "ext-pcre": "*", - "graham-campbell/result-type": "^1.1.2", + "graham-campbell/result-type": "^1.1.3", "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.2", + "phpoption/phpoption": "^1.9.3", "symfony/polyfill-ctype": "^1.24", "symfony/polyfill-mbstring": "^1.24", "symfony/polyfill-php80": "^1.24" @@ -14258,7 +14101,7 @@ "extra": { "bamarni-bin": { "bin-links": true, - "forward-command": true + "forward-command": false }, "branch-alias": { "dev-master": "5.6-dev" @@ -14293,7 +14136,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1" }, "funding": [ { @@ -14305,7 +14148,7 @@ "type": "tidelift" } ], - "time": "2023-11-12T22:43:29+00:00" + "time": "2024-07-20T21:52:34+00:00" }, { "name": "voku/portable-ascii", @@ -14488,16 +14331,16 @@ }, { "name": "wireui/wireui", - "version": "v1.17.12", + "version": "v1.17.13", "source": { "type": "git", "url": "https://github.com/wireui/wireui.git", - "reference": "d75dafb76bbb64a303e7a88b0d1fc6989934a003" + "reference": "cd885eb615c0ad9b6e57f839990417d67c6b2ada" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wireui/wireui/zipball/d75dafb76bbb64a303e7a88b0d1fc6989934a003", - "reference": "d75dafb76bbb64a303e7a88b0d1fc6989934a003", + "url": "https://api.github.com/repos/wireui/wireui/zipball/cd885eb615c0ad9b6e57f839990417d67c6b2ada", + "reference": "cd885eb615c0ad9b6e57f839990417d67c6b2ada", "shasum": "" }, "require": { @@ -14550,48 +14393,41 @@ ], "support": { "issues": "https://github.com/wireui/wireui/issues", - "source": "https://github.com/wireui/wireui/tree/v1.17.12" + "source": "https://github.com/wireui/wireui/tree/v1.17.13" }, - "funding": [ - { - "url": "https://github.com/PH7-Jack", - "type": "github" - } - ], - "time": "2023-10-25T05:42:02+00:00" + "time": "2024-05-24T20:06:03+00:00" }, { "name": "ylsideas/feature-flags", - "version": "v2.4.2", + "version": "v2.6.0", "source": { "type": "git", "url": "https://github.com/ylsideas/feature-flags.git", - "reference": "39baec4645098c3d5bc52d4e5c3c5b2bc4204f94" + "reference": "371350e8729152d43575be9442cc254779eae038" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ylsideas/feature-flags/zipball/39baec4645098c3d5bc52d4e5c3c5b2bc4204f94", - "reference": "39baec4645098c3d5bc52d4e5c3c5b2bc4204f94", + "url": "https://api.github.com/repos/ylsideas/feature-flags/zipball/371350e8729152d43575be9442cc254779eae038", + "reference": "371350e8729152d43575be9442cc254779eae038", "shasum": "" }, "require": { - "illuminate/contracts": "10.*|^9.6", - "php": "^8.1" + "illuminate/contracts": "11.*|10.*", + "php": "^8.2" }, "require-dev": { - "laravel/pint": "^1.2", - "nunomaduro/collision": "^6.0|^5.0", - "nunomaduro/larastan": "^2.0|^1.0", - "orchestra/testbench": "^8.0|^7.0", - "pestphp/pest": "^1.21", - "pestphp/pest-plugin-laravel": "^1.1", + "composer/semver": "^3.0", + "larastan/larastan": "^2.0|^1.0", + "laravel/pint": "^1.0", + "nunomaduro/collision": "^8.0|^7.8|^6.0", + "orchestra/testbench": "^9.0|^8.0|^7.0", + "pestphp/pest": "^1.21|^2.34", + "pestphp/pest-plugin-arch": "^2.6", + "pestphp/pest-plugin-laravel": "^1.1|^2.3", "phpstan/extension-installer": "^1.1", "phpstan/phpdoc-parser": "^1.15", "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^9.5.13", - "rector/rector": "^0.14.2", - "spatie/laravel-ray": "^1.26" + "rector/rector": "^1.0" }, "type": "library", "extra": { @@ -14628,7 +14464,7 @@ ], "support": { "issues": "https://github.com/ylsideas/feature-flags/issues", - "source": "https://github.com/ylsideas/feature-flags/tree/v2.4.2" + "source": "https://github.com/ylsideas/feature-flags/tree/v2.6.0" }, "funding": [ { @@ -14636,34 +14472,35 @@ "type": "github" } ], - "time": "2023-12-01T18:56:48+00:00" + "time": "2024-05-28T05:43:27+00:00" }, { "name": "zbateson/mail-mime-parser", - "version": "2.4.0", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/zbateson/mail-mime-parser.git", - "reference": "20b3e48eb799537683780bc8782fbbe9bc25934a" + "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/20b3e48eb799537683780bc8782fbbe9bc25934a", - "reference": "20b3e48eb799537683780bc8782fbbe9bc25934a", + "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/e0d4423fe27850c9dd301190767dbc421acc2f19", + "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19", "shasum": "" }, "require": { - "guzzlehttp/psr7": "^1.7.0|^2.0", - "php": ">=7.1", - "pimple/pimple": "^3.0", - "zbateson/mb-wrapper": "^1.0.1", - "zbateson/stream-decorators": "^1.0.6" + "guzzlehttp/psr7": "^2.5", + "php": ">=8.0", + "php-di/php-di": "^6.0|^7.0", + "psr/log": "^1|^2|^3", + "zbateson/mb-wrapper": "^2.0", + "zbateson/stream-decorators": "^2.1" }, "require-dev": { "friendsofphp/php-cs-fixer": "*", - "mikey179/vfsstream": "^1.6.0", + "monolog/monolog": "^2|^3", "phpstan/phpstan": "*", - "phpunit/phpunit": "<10" + "phpunit/phpunit": "^9.6" }, "suggest": { "ext-iconv": "For best support/performance", @@ -14711,31 +14548,31 @@ "type": "github" } ], - "time": "2023-02-14T22:58:03+00:00" + "time": "2024-08-10T18:44:09+00:00" }, { "name": "zbateson/mb-wrapper", - "version": "1.2.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/zbateson/mb-wrapper.git", - "reference": "faf35dddfacfc5d4d5f9210143eafd7a7fe74334" + "reference": "9e4373a153585d12b6c621ac4a6bb143264d4619" }, "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/9e4373a153585d12b6c621ac4a6bb143264d4619", + "reference": "9e4373a153585d12b6c621ac4a6bb143264d4619", "shasum": "" }, "require": { - "php": ">=7.1", + "php": ">=8.0", "symfony/polyfill-iconv": "^1.9", "symfony/polyfill-mbstring": "^1.9" }, "require-dev": { "friendsofphp/php-cs-fixer": "*", "phpstan/phpstan": "*", - "phpunit/phpunit": "<=9.0" + "phpunit/phpunit": "<10.0" }, "suggest": { "ext-iconv": "For best support/performance", @@ -14772,7 +14609,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/2.0.0" }, "funding": [ { @@ -14780,31 +14617,31 @@ "type": "github" } ], - "time": "2023-01-11T23:05:44+00:00" + "time": "2024-03-20T01:38:07+00:00" }, { "name": "zbateson/stream-decorators", - "version": "1.2.1", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/zbateson/stream-decorators.git", - "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9" + "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/783b034024fda8eafa19675fb2552f8654d3a3e9", - "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9", + "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/32a2a62fb0f26313395c996ebd658d33c3f9c4e5", + "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5", "shasum": "" }, "require": { - "guzzlehttp/psr7": "^1.9 | ^2.0", - "php": ">=7.2", - "zbateson/mb-wrapper": "^1.0.0" + "guzzlehttp/psr7": "^2.5", + "php": ">=8.0", + "zbateson/mb-wrapper": "^2.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "*", "phpstan/phpstan": "*", - "phpunit/phpunit": "<10.0" + "phpunit/phpunit": "^9.6|^10.0" }, "type": "library", "autoload": { @@ -14835,7 +14672,7 @@ ], "support": { "issues": "https://github.com/zbateson/stream-decorators/issues", - "source": "https://github.com/zbateson/stream-decorators/tree/1.2.1" + "source": "https://github.com/zbateson/stream-decorators/tree/2.1.1" }, "funding": [ { @@ -14843,20 +14680,20 @@ "type": "github" } ], - "time": "2023-05-30T22:51:52+00:00" + "time": "2024-04-29T21:42:39+00:00" }, { "name": "ziffmedia/nova-select-plus", - "version": "v2.0.4", + "version": "v2.0.6", "source": { "type": "git", "url": "https://github.com/ziffmedia/nova-select-plus.git", - "reference": "5a5994497caf074544c6005517de5cd9151b9729" + "reference": "459ec8258ba467f53ea8ef355ca13cdb2ce39d88" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ziffmedia/nova-select-plus/zipball/5a5994497caf074544c6005517de5cd9151b9729", - "reference": "5a5994497caf074544c6005517de5cd9151b9729", + "url": "https://api.github.com/repos/ziffmedia/nova-select-plus/zipball/459ec8258ba467f53ea8ef355ca13cdb2ce39d88", + "reference": "459ec8258ba467f53ea8ef355ca13cdb2ce39d88", "shasum": "" }, "require": { @@ -14896,9 +14733,9 @@ ], "support": { "issues": "https://github.com/ziffmedia/nova-select-plus/issues", - "source": "https://github.com/ziffmedia/nova-select-plus/tree/v2.0.4" + "source": "https://github.com/ziffmedia/nova-select-plus/tree/v2.0.6" }, - "time": "2023-09-27T00:33:11+00:00" + "time": "2024-01-03T18:01:29+00:00" } ], "packages-dev": [ @@ -14974,29 +14811,29 @@ }, { "name": "dragon-code/contracts", - "version": "v2.21.0", + "version": "2.23.0", "source": { "type": "git", "url": "https://github.com/TheDragonCode/contracts.git", - "reference": "c69d7183a4ec35892ca208b2863d3ccad9465d7b" + "reference": "44dbad923f152e0dc2699fbac2d33b65dd6a8f7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TheDragonCode/contracts/zipball/c69d7183a4ec35892ca208b2863d3ccad9465d7b", - "reference": "c69d7183a4ec35892ca208b2863d3ccad9465d7b", + "url": "https://api.github.com/repos/TheDragonCode/contracts/zipball/44dbad923f152e0dc2699fbac2d33b65dd6a8f7d", + "reference": "44dbad923f152e0dc2699fbac2d33b65dd6a8f7d", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", "psr/http-message": "^1.0.1 || ^2.0", - "symfony/http-kernel": "^4.0 || ^5.0 || ^6.0", + "symfony/http-kernel": "^4.0 || ^5.0 || ^6.0 || ^7.0", "symfony/polyfill-php80": "^1.23" }, "conflict": { "andrey-helldar/contracts": "*" }, "require-dev": { - "illuminate/database": "^10.0", + "illuminate/database": "^10.0 || ^11.0", "phpdocumentor/reflection-docblock": "^5.0" }, "type": "library", @@ -15013,7 +14850,7 @@ { "name": "Andrey Helldar", "email": "helldar@dragon-code.pro", - "homepage": "https://github.com/andrey-helldar" + "homepage": "https://dragon-code.pro" } ], "description": "A set of contracts for any project", @@ -15033,20 +14870,12 @@ "url": "https://www.donationalerts.com/r/dragon_code", "type": "donationalerts" }, - { - "url": "https://github.com/sponsors/TheDragonCode", - "type": "github" - }, - { - "url": "https://opencollective.com/dragon-code", - "type": "open_collective" - }, { "url": "https://yoomoney.ru/to/410012608840929", "type": "yoomoney" } ], - "time": "2023-11-14T20:01:25+00:00" + "time": "2024-03-11T20:15:12+00:00" }, { "name": "dragon-code/pretty-array", @@ -15127,26 +14956,26 @@ }, { "name": "dragon-code/support", - "version": "v6.11.3", + "version": "6.15.0", "source": { "type": "git", "url": "https://github.com/TheDragonCode/support.git", - "reference": "3dbf1715e83e216ae1fea31eecc022829dc864df" + "reference": "087d7baaa963cdbb24e901dc27e10cdc31c2529c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TheDragonCode/support/zipball/3dbf1715e83e216ae1fea31eecc022829dc864df", - "reference": "3dbf1715e83e216ae1fea31eecc022829dc864df", + "url": "https://api.github.com/repos/TheDragonCode/support/zipball/087d7baaa963cdbb24e901dc27e10cdc31c2529c", + "reference": "087d7baaa963cdbb24e901dc27e10cdc31c2529c", "shasum": "" }, "require": { - "dragon-code/contracts": "^2.19.1", + "dragon-code/contracts": "^2.22.0", "ext-bcmath": "*", "ext-ctype": "*", "ext-dom": "*", "ext-json": "*", "ext-mbstring": "*", - "php": "^8.0", + "php": "^8.1", "psr/http-message": "^1.0.1 || ^2.0", "symfony/polyfill-php81": "^1.25", "voku/portable-ascii": "^1.4.8 || ^2.0.1" @@ -15155,9 +14984,9 @@ "andrey-helldar/support": "*" }, "require-dev": { - "illuminate/contracts": "^9.0 || ^10.0", - "phpunit/phpunit": "^9.6", - "symfony/var-dumper": "^6.0" + "illuminate/contracts": "^9.0 || ^10.0 || ^11.0", + "phpunit/phpunit": "^9.6 || ^11.0", + "symfony/var-dumper": "^6.0 || ^7.0" }, "suggest": { "dragon-code/laravel-support": "Various helper files for the Laravel and Lumen frameworks", @@ -15187,7 +15016,7 @@ { "name": "Andrey Helldar", "email": "helldar@dragon-code.pro", - "homepage": "https://github.com/andrey-helldar" + "homepage": "https://dragon-code.pro" } ], "description": "Support package is a collection of helpers and tools for any project.", @@ -15217,33 +15046,25 @@ "url": "https://www.donationalerts.com/r/dragon_code", "type": "donationalerts" }, - { - "url": "https://github.com/sponsors/TheDragonCode", - "type": "github" - }, - { - "url": "https://opencollective.com/dragon-code", - "type": "open_collective" - }, { "url": "https://yoomoney.ru/to/410012608840929", "type": "yoomoney" } ], - "time": "2023-08-03T09:43:52+00:00" + "time": "2024-09-07T13:27:37+00:00" }, { "name": "fakerphp/faker", - "version": "v1.23.0", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/FakerPHP/Faker.git", - "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01" + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01", - "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b", + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b", "shasum": "" }, "require": { @@ -15269,11 +15090,6 @@ "ext-mbstring": "Required for multibyte Unicode string functionality." }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "v1.21-dev" - } - }, "autoload": { "psr-4": { "Faker\\": "src/Faker/" @@ -15296,9 +15112,9 @@ ], "support": { "issues": "https://github.com/FakerPHP/Faker/issues", - "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0" + "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1" }, - "time": "2023-06-12T08:44:38+00:00" + "time": "2024-01-02T13:46:09+00:00" }, { "name": "filp/whoops", @@ -15536,27 +15352,27 @@ }, { "name": "laravel-lang/attributes", - "version": "2.5.1", + "version": "2.10.8", "source": { "type": "git", "url": "https://github.com/Laravel-Lang/attributes.git", - "reference": "d98d19ce3e6a7a98bb837a3ad7e32fa8db9eda81" + "reference": "cf53eb18a47692045ac135e5be1e3fa979232504" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Lang/attributes/zipball/d98d19ce3e6a7a98bb837a3ad7e32fa8db9eda81", - "reference": "d98d19ce3e6a7a98bb837a3ad7e32fa8db9eda81", + "url": "https://api.github.com/repos/Laravel-Lang/attributes/zipball/cf53eb18a47692045ac135e5be1e3fa979232504", + "reference": "cf53eb18a47692045ac135e5be1e3fa979232504", "shasum": "" }, "require": { "ext-json": "*", - "laravel-lang/publisher": "^14.0 || ^15.0", + "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0", "php": "^8.1" }, "require-dev": { "laravel-lang/status-generator": "^1.19 || ^2.0", "phpunit/phpunit": "^10.0", - "symfony/var-dumper": "^6.0" + "symfony/var-dumper": "^6.0 || ^7.0" }, "type": "library", "extra": { @@ -15585,7 +15401,7 @@ "homepage": "https://github.com/Laravel-Lang" } ], - "description": "List of 78 languages for form field names", + "description": "List of 126 languages for form field names", "keywords": [ "attributes", "fields", @@ -15599,36 +15415,33 @@ ], "support": { "issues": "https://github.com/Laravel-Lang/attributes/issues", - "source": "https://github.com/Laravel-Lang/attributes/tree/2.5.1" + "source": "https://github.com/Laravel-Lang/attributes/tree/2.10.8" }, - "time": "2023-11-21T17:42:19+00:00" + "time": "2024-08-30T09:34:14+00:00" }, { "name": "laravel-lang/http-statuses", - "version": "3.6.3", + "version": "3.8.4", "source": { "type": "git", "url": "https://github.com/Laravel-Lang/http-statuses.git", - "reference": "439ff024d4199da0facbc7948d623a235bfc10f7" + "reference": "0e8b1af2835f951f5587f6c635ea6b929f275415" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Laravel-Lang/http-statuses/zipball/439ff024d4199da0facbc7948d623a235bfc10f7", - "reference": "439ff024d4199da0facbc7948d623a235bfc10f7", + "url": "https://api.github.com/repos/Laravel-Lang/http-statuses/zipball/0e8b1af2835f951f5587f6c635ea6b929f275415", + "reference": "0e8b1af2835f951f5587f6c635ea6b929f275415", "shasum": "" }, "require": { "ext-json": "*", - "laravel-lang/publisher": "^14.1 || ^15.0", + "laravel-lang/publisher": "^14.1 || ^15.0 || ^16.0", "php": "^8.1" }, - "conflict": { - "laravel-lang/publisher": "<14.0" - }, "require-dev": { "laravel-lang/status-generator": "^1.19 || ^2.0", "phpunit/phpunit": "^10.0", - "symfony/var-dumper": "^6.0" + "symfony/var-dumper": "^6.0 || ^7.0" }, "type": "library", "extra": { @@ -15657,7 +15470,7 @@ "homepage": "https://github.com/Laravel-Lang" } ], - "description": "List of 78 languages for HTTP statuses", + "description": "List of 126 languages for HTTP statuses", "keywords": [ "http", "lang", @@ -15669,9 +15482,9 @@ ], "support": { "issues": "https://github.com/Laravel-Lang/http-statuses/issues", - "source": "https://github.com/Laravel-Lang/http-statuses/tree/3.6.3" + "source": "https://github.com/Laravel-Lang/http-statuses/tree/3.8.4" }, - "time": "2023-12-01T11:29:46+00:00" + "time": "2024-07-20T18:15:58+00:00" }, { "name": "laravel-lang/lang", @@ -15848,30 +15661,30 @@ }, { "name": "laravel-shift/blueprint", - "version": "v2.9.0", + "version": "v2.10.0", "source": { "type": "git", "url": "https://github.com/laravel-shift/blueprint.git", - "reference": "bd02171efa47980bca35b4de7ec584955faff64f" + "reference": "05a9d91a3b2d849fdbc25317fa5242bb4bb346ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-shift/blueprint/zipball/bd02171efa47980bca35b4de7ec584955faff64f", - "reference": "bd02171efa47980bca35b4de7ec584955faff64f", + "url": "https://api.github.com/repos/laravel-shift/blueprint/zipball/05a9d91a3b2d849fdbc25317fa5242bb4bb346ce", + "reference": "05a9d91a3b2d849fdbc25317fa5242bb4bb346ce", "shasum": "" }, "require": { - "doctrine/dbal": "^3.3", - "illuminate/console": "^10.0", - "illuminate/filesystem": "^10.0", - "illuminate/support": "^10.0", + "illuminate/console": "^10.38|^11.0", + "illuminate/database": "^10.38|^11.0", + "illuminate/filesystem": "^10.38|^11.0", + "illuminate/support": "^10.38|^11.0", "laravel-shift/faker-registry": "^0.3.0", "symfony/yaml": ">=6.2" }, "require-dev": { "laravel/pint": "^1.2", "mockery/mockery": "^1.4.4", - "orchestra/testbench": "^8.0", + "orchestra/testbench": "^8.0|^9.0", "phpunit/phpunit": "^10.0" }, "suggest": { @@ -15902,9 +15715,9 @@ ], "support": { "issues": "https://github.com/laravel-shift/blueprint/issues", - "source": "https://github.com/laravel-shift/blueprint/tree/v2.9.0" + "source": "https://github.com/laravel-shift/blueprint/tree/v2.10.0" }, - "time": "2023-12-08T00:24:07+00:00" + "time": "2024-03-13T19:42:08+00:00" }, { "name": "laravel-shift/faker-registry", @@ -15948,16 +15761,16 @@ }, { "name": "laravel/pint", - "version": "v1.13.7", + "version": "v1.17.3", "source": { "type": "git", "url": "https://github.com/laravel/pint.git", - "reference": "4157768980dbd977f1c4b4cc94997416d8b30ece" + "reference": "9d77be916e145864f10788bb94531d03e1f7b482" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/pint/zipball/4157768980dbd977f1c4b4cc94997416d8b30ece", - "reference": "4157768980dbd977f1c4b4cc94997416d8b30ece", + "url": "https://api.github.com/repos/laravel/pint/zipball/9d77be916e145864f10788bb94531d03e1f7b482", + "reference": "9d77be916e145864f10788bb94531d03e1f7b482", "shasum": "" }, "require": { @@ -15968,13 +15781,13 @@ "php": "^8.1.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.38.0", - "illuminate/view": "^10.30.1", - "laravel-zero/framework": "^10.3.0", - "mockery/mockery": "^1.6.6", - "nunomaduro/larastan": "^2.6.4", + "friendsofphp/php-cs-fixer": "^3.64.0", + "illuminate/view": "^10.48.20", + "larastan/larastan": "^2.9.8", + "laravel-zero/framework": "^10.4.0", + "mockery/mockery": "^1.6.12", "nunomaduro/termwind": "^1.15.1", - "pestphp/pest": "^2.24.2" + "pestphp/pest": "^2.35.1" }, "bin": [ "builds/pint" @@ -16010,27 +15823,28 @@ "issues": "https://github.com/laravel/pint/issues", "source": "https://github.com/laravel/pint" }, - "time": "2023-12-05T19:43:12+00:00" + "time": "2024-09-03T15:00:28+00:00" }, { "name": "laravel/sail", - "version": "v1.26.3", + "version": "v1.31.3", "source": { "type": "git", "url": "https://github.com/laravel/sail.git", - "reference": "fa1ad5fbb03686dfc752bfd1861d86091cc1c32d" + "reference": "0a7e2891a85eba2d448a9ffc6fc5ce367e924bc1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sail/zipball/fa1ad5fbb03686dfc752bfd1861d86091cc1c32d", - "reference": "fa1ad5fbb03686dfc752bfd1861d86091cc1c32d", + "url": "https://api.github.com/repos/laravel/sail/zipball/0a7e2891a85eba2d448a9ffc6fc5ce367e924bc1", + "reference": "0a7e2891a85eba2d448a9ffc6fc5ce367e924bc1", "shasum": "" }, "require": { - "illuminate/console": "^9.0|^10.0|^11.0", - "illuminate/contracts": "^9.0|^10.0|^11.0", - "illuminate/support": "^9.0|^10.0|^11.0", + "illuminate/console": "^9.52.16|^10.0|^11.0", + "illuminate/contracts": "^9.52.16|^10.0|^11.0", + "illuminate/support": "^9.52.16|^10.0|^11.0", "php": "^8.0", + "symfony/console": "^6.0|^7.0", "symfony/yaml": "^6.0|^7.0" }, "require-dev": { @@ -16042,9 +15856,6 @@ ], "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, "laravel": { "providers": [ "Laravel\\Sail\\SailServiceProvider" @@ -16075,20 +15886,20 @@ "issues": "https://github.com/laravel/sail/issues", "source": "https://github.com/laravel/sail" }, - "time": "2023-12-02T18:26:39+00:00" + "time": "2024-09-03T20:05:33+00:00" }, { "name": "mockery/mockery", - "version": "1.6.6", + "version": "1.6.12", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e" + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e", - "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e", + "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699", "shasum": "" }, "require": { @@ -16100,10 +15911,8 @@ "phpunit/phpunit": "<8.0" }, "require-dev": { - "phpunit/phpunit": "^8.5 || ^9.6.10", - "psalm/plugin-phpunit": "^0.18.4", - "symplify/easy-coding-standard": "^11.5.0", - "vimeo/psalm": "^4.30" + "phpunit/phpunit": "^8.5 || ^9.6.17", + "symplify/easy-coding-standard": "^12.1.14" }, "type": "library", "autoload": { @@ -16160,20 +15969,20 @@ "security": "https://github.com/mockery/mockery/security/advisories", "source": "https://github.com/mockery/mockery" }, - "time": "2023-08-09T00:03:52+00:00" + "time": "2024-05-16T03:13:13+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.11.1", + "version": "1.12.0", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", "shasum": "" }, "require": { @@ -16181,11 +15990,12 @@ }, "conflict": { "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3,<3.2.2" + "doctrine/common": "<2.13.3 || >=3 <3.2.2" }, "require-dev": { "doctrine/collections": "^1.6.8", "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" }, "type": "library", @@ -16211,7 +16021,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" }, "funding": [ { @@ -16219,7 +16029,7 @@ "type": "tidelift" } ], - "time": "2023-03-08T13:26:56+00:00" + "time": "2024-06-12T14:39:25+00:00" }, { "name": "nunomaduro/collision", @@ -16311,20 +16121,21 @@ }, { "name": "phar-io/manifest", - "version": "2.0.3", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/phar-io/manifest.git", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53" + "reference": "54750ef60c58e43759730615a392c31c80e23176" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", "shasum": "" }, "require": { "ext-dom": "*", + "ext-libxml": "*", "ext-phar": "*", "ext-xmlwriter": "*", "phar-io/version": "^3.0.1", @@ -16365,9 +16176,15 @@ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", "support": { "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/2.0.3" + "source": "https://github.com/phar-io/manifest/tree/2.0.4" }, - "time": "2021-07-20T11:28:43+00:00" + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" }, { "name": "phar-io/version", @@ -16422,35 +16239,35 @@ }, { "name": "phpunit/php-code-coverage", - "version": "9.2.29", + "version": "9.2.32", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76" + "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6a3a87ac2bbe33b25042753df8195ba4aa534c76", - "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5", + "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^4.15", + "nikic/php-parser": "^4.19.1 || ^5.1.0", "php": ">=7.3", - "phpunit/php-file-iterator": "^3.0.3", - "phpunit/php-text-template": "^2.0.2", - "sebastian/code-unit-reverse-lookup": "^2.0.2", - "sebastian/complexity": "^2.0", - "sebastian/environment": "^5.1.2", - "sebastian/lines-of-code": "^1.0.3", - "sebastian/version": "^3.0.1", - "theseer/tokenizer": "^1.2.0" + "phpunit/php-file-iterator": "^3.0.6", + "phpunit/php-text-template": "^2.0.4", + "sebastian/code-unit-reverse-lookup": "^2.0.3", + "sebastian/complexity": "^2.0.3", + "sebastian/environment": "^5.1.5", + "sebastian/lines-of-code": "^1.0.4", + "sebastian/version": "^3.0.2", + "theseer/tokenizer": "^1.2.3" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^9.6" }, "suggest": { "ext-pcov": "PHP extension that provides line coverage", @@ -16459,7 +16276,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.2-dev" + "dev-main": "9.2.x-dev" } }, "autoload": { @@ -16488,7 +16305,7 @@ "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/9.2.29" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32" }, "funding": [ { @@ -16496,7 +16313,7 @@ "type": "github" } ], - "time": "2023-09-19T04:57:46+00:00" + "time": "2024-08-22T04:23:01+00:00" }, { "name": "phpunit/php-file-iterator", @@ -16741,45 +16558,45 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.15", + "version": "9.6.20", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1" + "reference": "49d7820565836236411f5dc002d16dd689cde42f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1", - "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/49d7820565836236411f5dc002d16dd689cde42f", + "reference": "49d7820565836236411f5dc002d16dd689cde42f", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1 || ^2", + "doctrine/instantiator": "^1.5.0 || ^2", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", "ext-mbstring": "*", "ext-xml": "*", "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.10.1", - "phar-io/manifest": "^2.0.3", - "phar-io/version": "^3.0.2", + "myclabs/deep-copy": "^1.12.0", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", "php": ">=7.3", - "phpunit/php-code-coverage": "^9.2.28", - "phpunit/php-file-iterator": "^3.0.5", + "phpunit/php-code-coverage": "^9.2.31", + "phpunit/php-file-iterator": "^3.0.6", "phpunit/php-invoker": "^3.1.1", - "phpunit/php-text-template": "^2.0.3", - "phpunit/php-timer": "^5.0.2", - "sebastian/cli-parser": "^1.0.1", - "sebastian/code-unit": "^1.0.6", + "phpunit/php-text-template": "^2.0.4", + "phpunit/php-timer": "^5.0.3", + "sebastian/cli-parser": "^1.0.2", + "sebastian/code-unit": "^1.0.8", "sebastian/comparator": "^4.0.8", - "sebastian/diff": "^4.0.3", - "sebastian/environment": "^5.1.3", - "sebastian/exporter": "^4.0.5", - "sebastian/global-state": "^5.0.1", - "sebastian/object-enumerator": "^4.0.3", - "sebastian/resource-operations": "^3.0.3", - "sebastian/type": "^3.2", + "sebastian/diff": "^4.0.6", + "sebastian/environment": "^5.1.5", + "sebastian/exporter": "^4.0.6", + "sebastian/global-state": "^5.0.7", + "sebastian/object-enumerator": "^4.0.4", + "sebastian/resource-operations": "^3.0.4", + "sebastian/type": "^3.2.1", "sebastian/version": "^3.0.2" }, "suggest": { @@ -16824,7 +16641,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.20" }, "funding": [ { @@ -16840,20 +16657,20 @@ "type": "tidelift" } ], - "time": "2023-12-01T16:55:19+00:00" + "time": "2024-07-10T11:45:39+00:00" }, { "name": "sebastian/cli-parser", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/cli-parser.git", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" + "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b", + "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b", "shasum": "" }, "require": { @@ -16888,7 +16705,7 @@ "homepage": "https://github.com/sebastianbergmann/cli-parser", "support": { "issues": "https://github.com/sebastianbergmann/cli-parser/issues", - "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" + "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2" }, "funding": [ { @@ -16896,7 +16713,7 @@ "type": "github" } ], - "time": "2020-09-28T06:08:49+00:00" + "time": "2024-03-02T06:27:43+00:00" }, { "name": "sebastian/code-unit", @@ -17085,20 +16902,20 @@ }, { "name": "sebastian/complexity", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/complexity.git", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a", + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a", "shasum": "" }, "require": { - "nikic/php-parser": "^4.7", + "nikic/php-parser": "^4.18 || ^5.0", "php": ">=7.3" }, "require-dev": { @@ -17130,7 +16947,7 @@ "homepage": "https://github.com/sebastianbergmann/complexity", "support": { "issues": "https://github.com/sebastianbergmann/complexity/issues", - "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" + "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3" }, "funding": [ { @@ -17138,20 +16955,20 @@ "type": "github" } ], - "time": "2020-10-26T15:52:27+00:00" + "time": "2023-12-22T06:19:30+00:00" }, { "name": "sebastian/diff", - "version": "4.0.5", + "version": "4.0.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" + "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc", + "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc", "shasum": "" }, "require": { @@ -17196,7 +17013,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6" }, "funding": [ { @@ -17204,7 +17021,7 @@ "type": "github" } ], - "time": "2023-05-07T05:35:17+00:00" + "time": "2024-03-02T06:30:58+00:00" }, { "name": "sebastian/environment", @@ -17271,16 +17088,16 @@ }, { "name": "sebastian/exporter", - "version": "4.0.5", + "version": "4.0.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" + "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72", + "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72", "shasum": "" }, "require": { @@ -17336,7 +17153,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6" }, "funding": [ { @@ -17344,20 +17161,20 @@ "type": "github" } ], - "time": "2022-09-14T06:03:37+00:00" + "time": "2024-03-02T06:33:00+00:00" }, { "name": "sebastian/global-state", - "version": "5.0.6", + "version": "5.0.7", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "bde739e7565280bda77be70044ac1047bc007e34" + "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34", - "reference": "bde739e7565280bda77be70044ac1047bc007e34", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9", + "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9", "shasum": "" }, "require": { @@ -17400,7 +17217,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6" + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7" }, "funding": [ { @@ -17408,24 +17225,24 @@ "type": "github" } ], - "time": "2023-08-02T09:26:13+00:00" + "time": "2024-03-02T06:35:11+00:00" }, { "name": "sebastian/lines-of-code", - "version": "1.0.3", + "version": "1.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/lines-of-code.git", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5", + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5", "shasum": "" }, "require": { - "nikic/php-parser": "^4.6", + "nikic/php-parser": "^4.18 || ^5.0", "php": ">=7.3" }, "require-dev": { @@ -17457,7 +17274,7 @@ "homepage": "https://github.com/sebastianbergmann/lines-of-code", "support": { "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", - "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4" }, "funding": [ { @@ -17465,7 +17282,7 @@ "type": "github" } ], - "time": "2020-11-28T06:42:11+00:00" + "time": "2023-12-22T06:20:34+00:00" }, { "name": "sebastian/object-enumerator", @@ -17644,16 +17461,16 @@ }, { "name": "sebastian/resource-operations", - "version": "3.0.3", + "version": "3.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" + "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e", + "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e", "shasum": "" }, "require": { @@ -17665,7 +17482,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -17686,8 +17503,7 @@ "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", "support": { - "issues": "https://github.com/sebastianbergmann/resource-operations/issues", - "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" + "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4" }, "funding": [ { @@ -17695,7 +17511,7 @@ "type": "github" } ], - "time": "2020-09-28T06:45:17+00:00" + "time": "2024-03-14T16:00:52+00:00" }, { "name": "sebastian/type", @@ -17807,24 +17623,97 @@ "time": "2020-09-28T06:39:44+00:00" }, { - "name": "spatie/flare-client-php", - "version": "1.4.3", + "name": "spatie/error-solutions", + "version": "1.1.1", "source": { "type": "git", - "url": "https://github.com/spatie/flare-client-php.git", - "reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec" + "url": "https://github.com/spatie/error-solutions.git", + "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec", - "reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec", + "url": "https://api.github.com/repos/spatie/error-solutions/zipball/ae7393122eda72eed7cc4f176d1e96ea444f2d67", + "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67", + "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", + "openai-php/client": "^0.10.1", + "orchestra/testbench": "^7.0|8.22.3|^9.0", + "pestphp/pest": "^2.20", + "phpstan/phpstan": "^1.11", + "psr/simple-cache": "^3.0", + "psr/simple-cache-implementation": "^3.0", + "spatie/ray": "^1.28", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "legacy/ignition", + "Spatie\\ErrorSolutions\\": "src", + "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ruben Van Assche", + "email": "ruben@spatie.be", + "role": "Developer" + } + ], + "description": "This is my package error-solutions", + "homepage": "https://github.com/spatie/error-solutions", + "keywords": [ + "error-solutions", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/error-solutions/issues", + "source": "https://github.com/spatie/error-solutions/tree/1.1.1" + }, + "funding": [ + { + "url": "https://github.com/Spatie", + "type": "github" + } + ], + "time": "2024-07-25T11:06:04+00:00" + }, + { + "name": "spatie/flare-client-php", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/flare-client-php.git", + "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122", + "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122", "shasum": "" }, "require": { "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0", - "nesbot/carbon": "^2.62.1", "php": "^8.0", - "spatie/backtrace": "^1.5.2", + "spatie/backtrace": "^1.6.1", "symfony/http-foundation": "^5.2|^6.0|^7.0", "symfony/mime": "^5.2|^6.0|^7.0", "symfony/process": "^5.2|^6.0|^7.0", @@ -17836,7 +17725,7 @@ "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-phpunit": "^1.0", - "spatie/phpunit-snapshot-assertions": "^4.0|^5.0" + "spatie/pest-plugin-snapshots": "^1.0|^2.0" }, "type": "library", "extra": { @@ -17866,7 +17755,7 @@ ], "support": { "issues": "https://github.com/spatie/flare-client-php/issues", - "source": "https://github.com/spatie/flare-client-php/tree/1.4.3" + "source": "https://github.com/spatie/flare-client-php/tree/1.8.0" }, "funding": [ { @@ -17874,28 +17763,28 @@ "type": "github" } ], - "time": "2023-10-17T15:54:07+00:00" + "time": "2024-08-01T08:27:26+00:00" }, { "name": "spatie/ignition", - "version": "1.11.3", + "version": "1.15.0", "source": { "type": "git", "url": "https://github.com/spatie/ignition.git", - "reference": "3d886de644ff7a5b42e4d27c1e1f67c8b5f00044" + "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/ignition/zipball/3d886de644ff7a5b42e4d27c1e1f67c8b5f00044", - "reference": "3d886de644ff7a5b42e4d27c1e1f67c8b5f00044", + "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2", + "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", "php": "^8.0", - "spatie/backtrace": "^1.5.3", - "spatie/flare-client-php": "^1.4.0", + "spatie/error-solutions": "^1.0", + "spatie/flare-client-php": "^1.7", "symfony/console": "^5.4|^6.0|^7.0", "symfony/var-dumper": "^5.4|^6.0|^7.0" }, @@ -17957,42 +17846,41 @@ "type": "github" } ], - "time": "2023-10-18T14:09:40+00:00" + "time": "2024-06-12T14:55:22+00:00" }, { "name": "spatie/laravel-ignition", - "version": "2.3.1", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-ignition.git", - "reference": "bf21cd15aa47fa4ec5d73bbc932005c70261efc8" + "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/bf21cd15aa47fa4ec5d73bbc932005c70261efc8", - "reference": "bf21cd15aa47fa4ec5d73bbc932005c70261efc8", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/3c067b75bfb50574db8f7e2c3978c65eed71126c", + "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c", "shasum": "" }, "require": { "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", - "illuminate/support": "^10.0", + "illuminate/support": "^10.0|^11.0", "php": "^8.1", - "spatie/flare-client-php": "^1.3.5", - "spatie/ignition": "^1.9", - "symfony/console": "^6.2.3", - "symfony/var-dumper": "^6.2.3" + "spatie/ignition": "^1.15", + "symfony/console": "^6.2.3|^7.0", + "symfony/var-dumper": "^6.2.3|^7.0" }, "require-dev": { - "livewire/livewire": "^2.11", + "livewire/livewire": "^2.11|^3.3.5", "mockery/mockery": "^1.5.1", - "openai-php/client": "^0.3.4", - "orchestra/testbench": "^8.0", - "pestphp/pest": "^1.22.3", - "phpstan/extension-installer": "^1.2", + "openai-php/client": "^0.8.1", + "orchestra/testbench": "8.22.3|^9.0", + "pestphp/pest": "^2.34", + "phpstan/extension-installer": "^1.3.1", "phpstan/phpstan-deprecation-rules": "^1.1.1", - "phpstan/phpstan-phpunit": "^1.3.3", + "phpstan/phpstan-phpunit": "^1.3.16", "vlucas/phpdotenv": "^5.5" }, "suggest": { @@ -18049,20 +17937,20 @@ "type": "github" } ], - "time": "2023-10-09T12:55:26+00:00" + "time": "2024-06-12T15:01:18+00:00" }, { "name": "symfony/polyfill-php81", - "version": "v1.28.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b" + "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b", - "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af", + "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af", "shasum": "" }, "require": { @@ -18070,9 +17958,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -18112,7 +17997,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.30.0" }, "funding": [ { @@ -18128,20 +18013,20 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/yaml", - "version": "v7.0.0", + "version": "v7.1.4", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "0055b230c408428b9b5cde7c55659555be5c0278" + "reference": "92e080b851c1c655c786a2da77f188f2dccd0f4b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/0055b230c408428b9b5cde7c55659555be5c0278", - "reference": "0055b230c408428b9b5cde7c55659555be5c0278", + "url": "https://api.github.com/repos/symfony/yaml/zipball/92e080b851c1c655c786a2da77f188f2dccd0f4b", + "reference": "92e080b851c1c655c786a2da77f188f2dccd0f4b", "shasum": "" }, "require": { @@ -18183,7 +18068,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v7.0.0" + "source": "https://github.com/symfony/yaml/tree/v7.1.4" }, "funding": [ { @@ -18199,20 +18084,20 @@ "type": "tidelift" } ], - "time": "2023-11-07T10:26:03+00:00" + "time": "2024-08-12T09:59:40+00:00" }, { "name": "theseer/tokenizer", - "version": "1.2.2", + "version": "1.2.3", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96" + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96", - "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", "shasum": "" }, "require": { @@ -18241,7 +18126,7 @@ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/1.2.2" + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" }, "funding": [ { @@ -18249,7 +18134,7 @@ "type": "github" } ], - "time": "2023-11-20T00:12:19+00:00" + "time": "2024-03-03T12:36:25+00:00" } ], "aliases": [], diff --git a/config/comments.php b/config/comments.php deleted file mode 100644 index 22198a0a..00000000 --- a/config/comments.php +++ /dev/null @@ -1,145 +0,0 @@ - ['👍', '🔥', '🥳', '👀', '😍', '⚡'], - - /* - * You can allow guests to post comments. They will not be able to use - * reactions. - */ - 'allow_anonymous_comments' => false, - - /* - * A comment transformer is a class that will transform the comment text - * for example from Markdown to HTML - */ - 'comment_transformers' => [ - MarkdownToHtmlTransformer::class, - ], - - /* - * After all transformers have transformed the comment text, it will - * be passed to this class to sanitize it - */ - 'comment_sanitizer' => CommentSanitizer::class, - - /* - * Comments need to be approved before they are shown. You can opt - * to have all comments to be approved automatically. - */ - 'automatically_approve_all_comments' => true, - - 'models' => [ - /* - * The class that will comment on other things. Typically, this - * would be a user model. - */ - 'commentator' => App\Models\User::class, - - /* - * The field to use to display the name from the commentator model. - */ - 'name' => 'name', - - /* - * The model you want to use as a Comment model. It needs to be or - * extend the `Spatie\Comments\Models\Comment::class` model. - */ - 'comment' => Comment::class, - - /* - * The model you want to use as a React model. It needs to be or - * extend the `Spatie\Comments\Models\Reaction::class` model. - */ - 'reaction' => Reaction::class, - - /* - * The model you want to use as an opt-out model. It needs to be or - * extend the `Spatie\Comments\Models\CommentNotificationSubscription::class` model. - */ - 'comment_notification_subscription' => CommentNotificationSubscription::class, - ], - - 'notifications' => [ - /* - * When somebody creates a comment, a notification will be sent to other persons - * that commented on the same thing. - */ - 'enabled' => false, - - 'notifications' => [ - 'pending_comment' => PendingCommentNotification::class, - 'approved_comment' => ApprovedCommentNotification::class, - ], - - /* - * Here you can configure the notifications that will be sent via mail. - */ - 'mail' => [ - 'from' => [ - 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), - 'name' => env('MAIL_FROM_NAME', 'Example'), - ], - ], - ], - - 'pagination' => [ - /* - * Here you can configure the number of results to show before - * pagination links are displayed. - */ - 'results' => 10000, - - /* - * If you have multiple paginators on the same page, you can configure the - * query string page name to avoid conflicts with the other paginator. - * For example, you could set the page_name to be 'comments_page'. - */ - 'page_name' => 'page', - - /* - * You can choose a different pagination theme like "simple-tailwind" or build - * a custom pagination "vendor.livewire.custom-pagination" See the livewire - * docs for more information: https://laravel-livewire.com/docs/2.x/pagination#custom-pagination-view - */ - 'theme' => 'tailwind', - ], - - /* - * Unless you need fine-grained customization, you don't need to change - * these action classes. If you do change any of them, make sure that your class - * extends the original action class. - */ - 'actions' => [ - 'process_comment' => ProcessCommentAction::class, - 'send_notifications_for_pending_comment' => SendNotificationsForPendingCommentAction::class, - 'approve_comment' => ApproveCommentAction::class, - 'reject_comment' => RejectCommentAction::class, - 'send_notifications_for_approved_comment' => SendNotificationsForApprovedCommentAction::class, - ], - - 'gravatar' => [ - /* - * Here you can choose which default image to show when a user does not have a Gravatar profile. - * See the Gravatar docs for further information https://en.gravatar.com/site/implement/images/ - */ - 'default_image' => 'mp', - ], -]; diff --git a/config/services.php b/config/services.php index 592aa374..5dc3b215 100644 --- a/config/services.php +++ b/config/services.php @@ -23,10 +23,10 @@ return [ */ 'mailgun' => [ - 'domain' => env('MAILGUN_DOMAIN'), - 'secret' => env('MAILGUN_SECRET'), + 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), - 'scheme' => 'https', + 'scheme' => 'https', ], 'postmark' => [ @@ -34,22 +34,26 @@ return [ ], 'ses' => [ - 'key' => env('AWS_ACCESS_KEY_ID'), + 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ], 'twitter' => [ - 'oauth' => 2, - 'client_id' => env('TWITTER_CLIENT_ID'), + 'oauth' => 2, + 'client_id' => env('TWITTER_CLIENT_ID'), 'client_secret' => env('TWITTER_CLIENT_SECRET'), - 'redirect' => env('TWITTER_REDIRECT_URI'), + 'redirect' => env('TWITTER_REDIRECT_URI'), ], 'lnbits' => [ - 'url' => env('LNBITS_URL'), + 'url' => env('LNBITS_URL'), 'wallet_id' => env('LNBITS_WALLET_ID'), - 'read_key' => env('LNBITS_READ_KEY'), - ] + 'read_key' => env('LNBITS_READ_KEY'), + ], + + 'nostr' => [ + 'privatekey' => env('NOSTR_PRIVATE_KEY'), + ], ]; diff --git a/database/migrations/2022_12_07_122722_create_comments_tables.php b/database/migrations/2022_12_07_122722_create_comments_tables.php deleted file mode 100644 index 7d6e3f28..00000000 --- a/database/migrations/2022_12_07_122722_create_comments_tables.php +++ /dev/null @@ -1,47 +0,0 @@ -id(); - $this->nullableMorphs($table, 'commentator', 'commentator_comments'); - $table->morphs('commentable'); - $table->foreignId('parent_id')->nullable()->constrained('comments')->onDelete('cascade'); - $table->longText('original_text'); - $table->longText('text'); - $table->json('extra')->nullable(); - $table->timestamp('approved_at')->nullable(); - $table->timestamps(); - }); - - Schema::create('reactions', function (Blueprint $table) { - $table->id(); - $this->nullableMorphs($table, 'commentator', 'commentator_reactions'); - $table->foreignId('comment_id')->references('id')->on('comments')->cascadeOnDelete(); - $table->string('reaction'); - $table->timestamps(); - }); - - Schema::create('comment_notification_subscriptions', function (Blueprint $table) { - $table->id(); - $table->morphs('commentable', 'cn_subscriptions_commentable'); - $table->morphs('subscriber', 'cn_subscriptions_subscriber'); - $table->string('type'); - - $table->timestamps(); - }); - } - - protected function nullableMorphs(Blueprint $table, string $name, string $indexName): void - { - $table->string("{$name}_type")->nullable(); - $table->unsignedBigInteger("{$name}_id")->nullable(); - $table->index(["{$name}_type", "{$name}_id"], $indexName); - } -}; diff --git a/package.json b/package.json index 5a7cfdd6..f0137b7d 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,8 @@ "pusher-js": "^7.1.1-beta", "tailwindcss": "^3.1.0", "vite": "^4.1.1", - "vite-plugin-static-copy": "^0.16.0" + "vite-plugin-static-copy": "^0.16.0", + "webln": "^0.3.2" }, "dependencies": { "leaflet.heat": "^0.2.0", diff --git a/resources/js/app.js b/resources/js/app.js index bae9ec36..09a9b761 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -7,11 +7,15 @@ import intersect from '@alpinejs/intersect' import focus from '@alpinejs/focus' import NDK, { NDKNip07Signer, NDKEvent } from "@nostr-dev-kit/ndk" +import webln from './webln/webln' + window.Alpine = Alpine window.NDK = NDK window.NDKNip07Signer = NDKNip07Signer window.NDKEvent = NDKEvent +Alpine.data('webln', webln); + Alpine.plugin(collapse) Alpine.plugin(intersect) Alpine.plugin(focus) diff --git a/resources/js/webln/webln.js b/resources/js/webln/webln.js new file mode 100644 index 00000000..d5b6b0d5 --- /dev/null +++ b/resources/js/webln/webln.js @@ -0,0 +1,20 @@ +import {requestProvider} from "webln"; + +export default (livewireComponent) => ({ + + async init() { + console.log('WeBLN initialized'); + + let webln; + try { + webln = await requestProvider(); + console.log('WeBLN provider acquired'); + this.$wire.call('logThis', 'WeBLN provider acquired'); + } catch (err) { + // Handle users without WebLN + console.error('WeBLN provider request failed:', err); + this.$wire.call('logThis', 'WeBLN provider request failed: ' + err); + } + }, + +}); diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index f09387f9..671eb250 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -43,7 +43,6 @@ - @livewireStyles @include('layouts.styles') @@ -65,6 +64,5 @@ @stack('modals') @livewireScripts - diff --git a/resources/views/layouts/guest.blade.php b/resources/views/layouts/guest.blade.php index 3a3adc71..ed9d3d69 100644 --- a/resources/views/layouts/guest.blade.php +++ b/resources/views/layouts/guest.blade.php @@ -42,7 +42,6 @@ @vite(['resources/css/app.css', 'resources/js/app.js']) - @livewireStyles @include('layouts.styles') @@ -63,6 +62,5 @@ @stack('modals') @livewireScripts - diff --git a/resources/views/layouts/test.blade.php b/resources/views/layouts/test.blade.php new file mode 100644 index 00000000..a96e883e --- /dev/null +++ b/resources/views/layouts/test.blade.php @@ -0,0 +1,32 @@ + + + + + + + + + + + + {!! seo($SEOData ?? null) !!} + + @googlefonts + + + @vite(['resources/css/app.css', 'resources/js/app.js']) + + @livewireStyles + + + + +
+ +
+ {{ $slot }} +
+
+@livewireScripts + + diff --git a/resources/views/livewire/test/web-l-n.blade.php b/resources/views/livewire/test/web-l-n.blade.php new file mode 100644 index 00000000..6b953f08 --- /dev/null +++ b/resources/views/livewire/test/web-l-n.blade.php @@ -0,0 +1,3 @@ +
+ +
diff --git a/resources/views/vendor/wireui/components/avatar.blade.php b/resources/views/vendor/wireui/components/avatar.blade.php new file mode 100644 index 00000000..ade92c29 --- /dev/null +++ b/resources/views/vendor/wireui/components/avatar.blade.php @@ -0,0 +1,27 @@ +
class($avatarClasses) }}> + @if ($label) + + {{ $label }} + + @endif + + @if ($src) + $squared, + 'rounded-full' => !$squared, + $size, + ]) + src="{{ $src }}" + /> + @endif + + @if (!$src && !$label) + + + + @endif +
diff --git a/resources/views/vendor/wireui/components/badge.blade.php b/resources/views/vendor/wireui/components/badge.blade.php new file mode 100644 index 00000000..e95e5e42 --- /dev/null +++ b/resources/views/vendor/wireui/components/badge.blade.php @@ -0,0 +1,23 @@ + + @if ($icon) + + @elseif (isset($prepend)) +
attributes }}>{{ $prepend }}
+ @endif + + {{ $label ?? $slot }} + + @if ($rightIcon) + + @elseif (isset($append)) +
attributes }}>{{ $append }}
+ @endif +
diff --git a/resources/views/vendor/wireui/components/button.blade.php b/resources/views/vendor/wireui/components/button.blade.php new file mode 100644 index 00000000..f4903d1f --- /dev/null +++ b/resources/views/vendor/wireui/components/button.blade.php @@ -0,0 +1,48 @@ +@php + $tag = $href ? 'a' : 'button'; + + $defaultAttributes = [ + 'wire:loading.attr' => 'disabled', + 'wire:loading.class' => '!cursor-wait', + 'wire:target' => ($spinner && strlen($spinner) > 1) ? $spinner : null, + ]; + + $href === null + ? $defaultAttributes['type'] = 'button' + : $defaultAttributes['href'] = $href; +@endphp + +<{{ $tag }} {{ $attributes->merge($defaultAttributes) }}> + @if ($icon) + + @endif + + {{ $label ?? $slot }} + + @if ($rightIcon) + + @endif + + @if ($spinner) + + + + + @endif + diff --git a/resources/views/vendor/wireui/components/card.blade.php b/resources/views/vendor/wireui/components/card.blade.php new file mode 100644 index 00000000..24864340 --- /dev/null +++ b/resources/views/vendor/wireui/components/card.blade.php @@ -0,0 +1,23 @@ +
+ @if ($header) + {{ $header }} + @elseif ($title || $action) +
+

{{ $title }}

+ + @if ($action) + {{ $action }} + @endif +
+ @endif + +
merge(['class' => "{$padding} text-secondary-700 rounded-b-xl grow dark:text-secondary-400"]) }}> + {{ $slot }} +
+ + @if ($footer) +
+ {{ $footer }} +
+ @endif +
diff --git a/resources/views/vendor/wireui/components/checkbox.blade.php b/resources/views/vendor/wireui/components/checkbox.blade.php new file mode 100644 index 00000000..6bc67834 --- /dev/null +++ b/resources/views/vendor/wireui/components/checkbox.blade.php @@ -0,0 +1,50 @@ +
+ + + @if ($name) + + @endif +
diff --git a/resources/views/vendor/wireui/components/circle-badge.blade.php b/resources/views/vendor/wireui/components/circle-badge.blade.php new file mode 100644 index 00000000..5879d9fb --- /dev/null +++ b/resources/views/vendor/wireui/components/circle-badge.blade.php @@ -0,0 +1,11 @@ +merge() }}> + @if ($icon) + + @else + {{ $label ?? $slot }} + @endif + diff --git a/resources/views/vendor/wireui/components/circle-button.blade.php b/resources/views/vendor/wireui/components/circle-button.blade.php new file mode 100644 index 00000000..1c32f517 --- /dev/null +++ b/resources/views/vendor/wireui/components/circle-button.blade.php @@ -0,0 +1,45 @@ +@php + $tag = $href ? 'a' : 'button'; + + $defaultAttributes = [ + 'wire:loading.attr' => 'disabled', + 'wire:loading.class' => '!cursor-wait', + ]; + + $href === null + ? $defaultAttributes['type'] = 'button' + : $defaultAttributes['href'] = $href; +@endphp + +<{{ $tag }} {{ $attributes->merge($defaultAttributes) }}> +
+ @if ($icon) + + @else + {{ $label ?? $slot }} + @endif +
+ + @if ($spinner) + + + + + @endif + diff --git a/resources/views/vendor/wireui/components/color-picker.blade.php b/resources/views/vendor/wireui/components/color-picker.blade.php new file mode 100644 index 00000000..1863eecf --- /dev/null +++ b/resources/views/vendor/wireui/components/color-picker.blade.php @@ -0,0 +1,79 @@ +
only(['class', 'wire:key'])->class('relative') }}> + except(['class', 'wire:key'])->whereDoesntStartWith('wire:model') }} + :component="WireUi::component('input')" + x-model="{{ $colorNameAsValue ? 'selected.name' : 'selected.value' }}" + x-bind:class="{ 'pl-8': selected.value }" + x-on:input="setColor($event.target.value)" + x-ref="input" + :label="$label" + :prefix="null" + :icon="null"> + + + + + +
+ + + +
+
+
+ + +
+ dropdown-open + + +
+
+
diff --git a/resources/views/vendor/wireui/components/datetime-picker.blade.php b/resources/views/vendor/wireui/components/datetime-picker.blade.php new file mode 100644 index 00000000..c26ada01 --- /dev/null +++ b/resources/views/vendor/wireui/components/datetime-picker.blade.php @@ -0,0 +1,222 @@ +
only('wire:key') + ->class('relative') + ->merge(['wire:key' => "datepicker::{$name}"]) }} +> + whereDoesntStartWith(['wire:model', 'x-model', 'wire:key', 'readonly']) }} + :borderless="$borderless" + :shadowless="$shadowless" + :label="$label" + :hint="$hint" + :corner-hint="$cornerHint" + :icon="$icon" + :prefix="$prefix" + :prepend="$prepend" + readonly + x-on:click="toggle" + x-bind:value="model ? getDisplayValue() : null"> + @if (!$readonly && !$disabled) + +
+
+ + @if ($clearable) + + @endif + + +
+
+
+ @endif +
+ + +
+ @unless ($withoutTips) +
+ + + + + +
+ @endunless + +
+ + +
+ + +
+ + +
+ +
+
+ +
+ +
+ + + +
+
+
+ +
+ + +
+ +
+
+
+
diff --git a/resources/views/vendor/wireui/components/dialog.blade.php b/resources/views/vendor/wireui/components/dialog.blade.php new file mode 100644 index 00000000..d338a633 --- /dev/null +++ b/resources/views/vendor/wireui/components/dialog.blade.php @@ -0,0 +1,95 @@ + diff --git a/resources/views/vendor/wireui/components/dropdown.blade.php b/resources/views/vendor/wireui/components/dropdown.blade.php new file mode 100644 index 00000000..03e18615 --- /dev/null +++ b/resources/views/vendor/wireui/components/dropdown.blade.php @@ -0,0 +1,38 @@ +
only('wire:key') }}> +
+ @if (isset($trigger)) + {{ $trigger }} + @else + + @endif +
+ +
except('wire:key')->class([ + $getAlign(), + $width, + 'z-30 absolute mt-2 whitespace-nowrap' + ]) }} + style="display: none;" + @unless($persistent) x-on:click="close" @endunless> +
+ {{ $slot }} +
+
+
diff --git a/resources/views/vendor/wireui/components/dropdown/header.blade.php b/resources/views/vendor/wireui/components/dropdown/header.blade.php new file mode 100644 index 00000000..f4bca571 --- /dev/null +++ b/resources/views/vendor/wireui/components/dropdown/header.blade.php @@ -0,0 +1,7 @@ +
+
merge(['class' => $classes]) }}> + {{ $label }} +
+ + {{ $slot }} +
diff --git a/resources/views/vendor/wireui/components/dropdown/item.blade.php b/resources/views/vendor/wireui/components/dropdown/item.blade.php new file mode 100644 index 00000000..47d0ad7d --- /dev/null +++ b/resources/views/vendor/wireui/components/dropdown/item.blade.php @@ -0,0 +1,15 @@ +@if ($separator) +
+@endif + +merge(['class' => $getClasses()]) }}> + @if ($icon) + + @endif + + {{ $label ?? $slot }} + diff --git a/resources/views/vendor/wireui/components/error.blade.php b/resources/views/vendor/wireui/components/error.blade.php new file mode 100644 index 00000000..1c47d0c2 --- /dev/null +++ b/resources/views/vendor/wireui/components/error.blade.php @@ -0,0 +1,5 @@ +@error($name) +

merge(['class' => 'mt-2 text-sm text-negative-600']) }}> + {{ $message }} +

+@enderror diff --git a/resources/views/vendor/wireui/components/errors.blade.php b/resources/views/vendor/wireui/components/errors.blade.php new file mode 100644 index 00000000..66816228 --- /dev/null +++ b/resources/views/vendor/wireui/components/errors.blade.php @@ -0,0 +1,26 @@ +@if ($hasErrors($errors)) +
merge(['class' => 'rounded-lg bg-negative-50 dark:bg-secondary-800 dark:border dark:border-negative-600 p-4']) }}> +
+ + + + {{ str_replace('{errors}', $count($errors), $title) }} + +
+ +
+
    + @foreach ($getErrorMessages($errors) as $message) +
  • {{ head($message) }}
  • + @endforeach +
+
+
+@else + +@endif + diff --git a/resources/views/vendor/wireui/components/icon.blade.php b/resources/views/vendor/wireui/components/icon.blade.php new file mode 100644 index 00000000..a127126f --- /dev/null +++ b/resources/views/vendor/wireui/components/icon.blade.php @@ -0,0 +1 @@ + diff --git a/resources/views/vendor/wireui/components/icons/outline/academic-cap.blade.php b/resources/views/vendor/wireui/components/icons/outline/academic-cap.blade.php new file mode 100644 index 00000000..968f46fc --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/academic-cap.blade.php @@ -0,0 +1,5 @@ + + + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/adjustments.blade.php b/resources/views/vendor/wireui/components/icons/outline/adjustments.blade.php new file mode 100644 index 00000000..72d87ecd --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/adjustments.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/annotation.blade.php b/resources/views/vendor/wireui/components/icons/outline/annotation.blade.php new file mode 100644 index 00000000..574a2cfd --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/annotation.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/archive.blade.php b/resources/views/vendor/wireui/components/icons/outline/archive.blade.php new file mode 100644 index 00000000..0024c531 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/archive.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-circle-down.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-circle-down.blade.php new file mode 100644 index 00000000..8a5d5849 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-circle-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-circle-left.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-circle-left.blade.php new file mode 100644 index 00000000..58b628f1 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-circle-left.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-circle-right.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-circle-right.blade.php new file mode 100644 index 00000000..466e64f2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-circle-right.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-circle-up.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-circle-up.blade.php new file mode 100644 index 00000000..81db7d1c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-circle-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-down.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-down.blade.php new file mode 100644 index 00000000..a8d11f56 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-left.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-left.blade.php new file mode 100644 index 00000000..5528b439 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-left.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-down.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-down.blade.php new file mode 100644 index 00000000..f312b496 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-left.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-left.blade.php new file mode 100644 index 00000000..c73f05e3 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-left.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-right.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-right.blade.php new file mode 100644 index 00000000..ddba31a7 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-right.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-up.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-up.blade.php new file mode 100644 index 00000000..3d7e04e5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-narrow-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-right.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-right.blade.php new file mode 100644 index 00000000..2ae8ba7d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-right.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrow-up.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrow-up.blade.php new file mode 100644 index 00000000..4d5992e6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrow-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/arrows-expand.blade.php b/resources/views/vendor/wireui/components/icons/outline/arrows-expand.blade.php new file mode 100644 index 00000000..333f406c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/arrows-expand.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/at-symbol.blade.php b/resources/views/vendor/wireui/components/icons/outline/at-symbol.blade.php new file mode 100644 index 00000000..3d9bf09b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/at-symbol.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/backspace.blade.php b/resources/views/vendor/wireui/components/icons/outline/backspace.blade.php new file mode 100644 index 00000000..6e2b6a26 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/backspace.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/badge-check.blade.php b/resources/views/vendor/wireui/components/icons/outline/badge-check.blade.php new file mode 100644 index 00000000..1edae64a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/badge-check.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/ban.blade.php b/resources/views/vendor/wireui/components/icons/outline/ban.blade.php new file mode 100644 index 00000000..dee587f5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/ban.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/beaker.blade.php b/resources/views/vendor/wireui/components/icons/outline/beaker.blade.php new file mode 100644 index 00000000..7d1a74f1 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/beaker.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/bell.blade.php b/resources/views/vendor/wireui/components/icons/outline/bell.blade.php new file mode 100644 index 00000000..dc42125a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/bell.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/book-open.blade.php b/resources/views/vendor/wireui/components/icons/outline/book-open.blade.php new file mode 100644 index 00000000..5e38087a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/book-open.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/bookmark-alt.blade.php b/resources/views/vendor/wireui/components/icons/outline/bookmark-alt.blade.php new file mode 100644 index 00000000..c94d40e6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/bookmark-alt.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/bookmark.blade.php b/resources/views/vendor/wireui/components/icons/outline/bookmark.blade.php new file mode 100644 index 00000000..9ec72a95 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/bookmark.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/briefcase.blade.php b/resources/views/vendor/wireui/components/icons/outline/briefcase.blade.php new file mode 100644 index 00000000..52447fa2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/briefcase.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/cake.blade.php b/resources/views/vendor/wireui/components/icons/outline/cake.blade.php new file mode 100644 index 00000000..21c0aff6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/cake.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/calculator.blade.php b/resources/views/vendor/wireui/components/icons/outline/calculator.blade.php new file mode 100644 index 00000000..2f9d1766 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/calculator.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/calendar.blade.php b/resources/views/vendor/wireui/components/icons/outline/calendar.blade.php new file mode 100644 index 00000000..8c9984bb --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/calendar.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/camera.blade.php b/resources/views/vendor/wireui/components/icons/outline/camera.blade.php new file mode 100644 index 00000000..45ea5ade --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/camera.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/cash.blade.php b/resources/views/vendor/wireui/components/icons/outline/cash.blade.php new file mode 100644 index 00000000..64d7f34e --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/cash.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chart-bar.blade.php b/resources/views/vendor/wireui/components/icons/outline/chart-bar.blade.php new file mode 100644 index 00000000..bae0663e --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chart-bar.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chart-pie.blade.php b/resources/views/vendor/wireui/components/icons/outline/chart-pie.blade.php new file mode 100644 index 00000000..9e383254 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chart-pie.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chart-square-bar.blade.php b/resources/views/vendor/wireui/components/icons/outline/chart-square-bar.blade.php new file mode 100644 index 00000000..215df4cb --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chart-square-bar.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chat-alt-2.blade.php b/resources/views/vendor/wireui/components/icons/outline/chat-alt-2.blade.php new file mode 100644 index 00000000..445e20b0 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chat-alt-2.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chat-alt.blade.php b/resources/views/vendor/wireui/components/icons/outline/chat-alt.blade.php new file mode 100644 index 00000000..992b4f39 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chat-alt.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chat.blade.php b/resources/views/vendor/wireui/components/icons/outline/chat.blade.php new file mode 100644 index 00000000..4220a8dd --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chat.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/check-circle.blade.php b/resources/views/vendor/wireui/components/icons/outline/check-circle.blade.php new file mode 100644 index 00000000..c98a9084 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/check-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/check.blade.php b/resources/views/vendor/wireui/components/icons/outline/check.blade.php new file mode 100644 index 00000000..4f90026b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/check.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chevron-double-down.blade.php b/resources/views/vendor/wireui/components/icons/outline/chevron-double-down.blade.php new file mode 100644 index 00000000..699e7ab4 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chevron-double-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chevron-double-left.blade.php b/resources/views/vendor/wireui/components/icons/outline/chevron-double-left.blade.php new file mode 100644 index 00000000..0e7f402b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chevron-double-left.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chevron-double-right.blade.php b/resources/views/vendor/wireui/components/icons/outline/chevron-double-right.blade.php new file mode 100644 index 00000000..05c2d3d6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chevron-double-right.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chevron-double-up.blade.php b/resources/views/vendor/wireui/components/icons/outline/chevron-double-up.blade.php new file mode 100644 index 00000000..1b80d5d0 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chevron-double-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chevron-down.blade.php b/resources/views/vendor/wireui/components/icons/outline/chevron-down.blade.php new file mode 100644 index 00000000..fcbd4593 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chevron-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chevron-left.blade.php b/resources/views/vendor/wireui/components/icons/outline/chevron-left.blade.php new file mode 100644 index 00000000..27ad9945 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chevron-left.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chevron-right.blade.php b/resources/views/vendor/wireui/components/icons/outline/chevron-right.blade.php new file mode 100644 index 00000000..043619ab --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chevron-right.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chevron-up.blade.php b/resources/views/vendor/wireui/components/icons/outline/chevron-up.blade.php new file mode 100644 index 00000000..d2b0dcd7 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chevron-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/chip.blade.php b/resources/views/vendor/wireui/components/icons/outline/chip.blade.php new file mode 100644 index 00000000..27a64846 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/chip.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/clipboard-check.blade.php b/resources/views/vendor/wireui/components/icons/outline/clipboard-check.blade.php new file mode 100644 index 00000000..a1e6ac81 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/clipboard-check.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/clipboard-copy.blade.php b/resources/views/vendor/wireui/components/icons/outline/clipboard-copy.blade.php new file mode 100644 index 00000000..74a8f142 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/clipboard-copy.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/clipboard-list.blade.php b/resources/views/vendor/wireui/components/icons/outline/clipboard-list.blade.php new file mode 100644 index 00000000..2996c691 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/clipboard-list.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/clipboard.blade.php b/resources/views/vendor/wireui/components/icons/outline/clipboard.blade.php new file mode 100644 index 00000000..f8008ee0 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/clipboard.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/clock.blade.php b/resources/views/vendor/wireui/components/icons/outline/clock.blade.php new file mode 100644 index 00000000..8abba717 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/clock.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/cloud-download.blade.php b/resources/views/vendor/wireui/components/icons/outline/cloud-download.blade.php new file mode 100644 index 00000000..47952e6c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/cloud-download.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/cloud-upload.blade.php b/resources/views/vendor/wireui/components/icons/outline/cloud-upload.blade.php new file mode 100644 index 00000000..a663e24d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/cloud-upload.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/cloud.blade.php b/resources/views/vendor/wireui/components/icons/outline/cloud.blade.php new file mode 100644 index 00000000..c073b253 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/cloud.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/code.blade.php b/resources/views/vendor/wireui/components/icons/outline/code.blade.php new file mode 100644 index 00000000..9baf75cf --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/code.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/cog.blade.php b/resources/views/vendor/wireui/components/icons/outline/cog.blade.php new file mode 100644 index 00000000..167e6048 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/cog.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/collection.blade.php b/resources/views/vendor/wireui/components/icons/outline/collection.blade.php new file mode 100644 index 00000000..da4aa70f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/collection.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/color-swatch.blade.php b/resources/views/vendor/wireui/components/icons/outline/color-swatch.blade.php new file mode 100644 index 00000000..a0693610 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/color-swatch.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/credit-card.blade.php b/resources/views/vendor/wireui/components/icons/outline/credit-card.blade.php new file mode 100644 index 00000000..d5be631e --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/credit-card.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/cube-transparent.blade.php b/resources/views/vendor/wireui/components/icons/outline/cube-transparent.blade.php new file mode 100644 index 00000000..32dcaaad --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/cube-transparent.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/cube.blade.php b/resources/views/vendor/wireui/components/icons/outline/cube.blade.php new file mode 100644 index 00000000..869f3bc4 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/cube.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/currency-bangladeshi.blade.php b/resources/views/vendor/wireui/components/icons/outline/currency-bangladeshi.blade.php new file mode 100644 index 00000000..b99fc4d8 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/currency-bangladeshi.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/currency-dollar.blade.php b/resources/views/vendor/wireui/components/icons/outline/currency-dollar.blade.php new file mode 100644 index 00000000..1e1f570e --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/currency-dollar.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/currency-euro.blade.php b/resources/views/vendor/wireui/components/icons/outline/currency-euro.blade.php new file mode 100644 index 00000000..78fbbcf8 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/currency-euro.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/currency-pound.blade.php b/resources/views/vendor/wireui/components/icons/outline/currency-pound.blade.php new file mode 100644 index 00000000..c64bb6d0 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/currency-pound.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/currency-rupee.blade.php b/resources/views/vendor/wireui/components/icons/outline/currency-rupee.blade.php new file mode 100644 index 00000000..64b5e730 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/currency-rupee.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/currency-yen.blade.php b/resources/views/vendor/wireui/components/icons/outline/currency-yen.blade.php new file mode 100644 index 00000000..baf10598 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/currency-yen.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/cursor-click.blade.php b/resources/views/vendor/wireui/components/icons/outline/cursor-click.blade.php new file mode 100644 index 00000000..487f3e73 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/cursor-click.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/database.blade.php b/resources/views/vendor/wireui/components/icons/outline/database.blade.php new file mode 100644 index 00000000..92f100d5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/database.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/desktop-computer.blade.php b/resources/views/vendor/wireui/components/icons/outline/desktop-computer.blade.php new file mode 100644 index 00000000..4e8232ab --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/desktop-computer.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/device-mobile.blade.php b/resources/views/vendor/wireui/components/icons/outline/device-mobile.blade.php new file mode 100644 index 00000000..2e4acfd0 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/device-mobile.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/device-tablet.blade.php b/resources/views/vendor/wireui/components/icons/outline/device-tablet.blade.php new file mode 100644 index 00000000..f6dac2f5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/device-tablet.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/document-add.blade.php b/resources/views/vendor/wireui/components/icons/outline/document-add.blade.php new file mode 100644 index 00000000..640ab892 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/document-add.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/document-download.blade.php b/resources/views/vendor/wireui/components/icons/outline/document-download.blade.php new file mode 100644 index 00000000..3ad70c07 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/document-download.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/document-duplicate.blade.php b/resources/views/vendor/wireui/components/icons/outline/document-duplicate.blade.php new file mode 100644 index 00000000..2e54170a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/document-duplicate.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/document-remove.blade.php b/resources/views/vendor/wireui/components/icons/outline/document-remove.blade.php new file mode 100644 index 00000000..c37751a4 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/document-remove.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/document-report.blade.php b/resources/views/vendor/wireui/components/icons/outline/document-report.blade.php new file mode 100644 index 00000000..9f1c1e24 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/document-report.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/document-search.blade.php b/resources/views/vendor/wireui/components/icons/outline/document-search.blade.php new file mode 100644 index 00000000..171725c2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/document-search.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/document-text.blade.php b/resources/views/vendor/wireui/components/icons/outline/document-text.blade.php new file mode 100644 index 00000000..16be44a2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/document-text.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/document.blade.php b/resources/views/vendor/wireui/components/icons/outline/document.blade.php new file mode 100644 index 00000000..0c701e88 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/document.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/dots-circle-horizontal.blade.php b/resources/views/vendor/wireui/components/icons/outline/dots-circle-horizontal.blade.php new file mode 100644 index 00000000..b6b057b2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/dots-circle-horizontal.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/dots-horizontal.blade.php b/resources/views/vendor/wireui/components/icons/outline/dots-horizontal.blade.php new file mode 100644 index 00000000..00325ada --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/dots-horizontal.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/dots-vertical.blade.php b/resources/views/vendor/wireui/components/icons/outline/dots-vertical.blade.php new file mode 100644 index 00000000..7d3effac --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/dots-vertical.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/download.blade.php b/resources/views/vendor/wireui/components/icons/outline/download.blade.php new file mode 100644 index 00000000..fae7bfcd --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/download.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/duplicate.blade.php b/resources/views/vendor/wireui/components/icons/outline/duplicate.blade.php new file mode 100644 index 00000000..c69cdd3d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/duplicate.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/emoji-happy.blade.php b/resources/views/vendor/wireui/components/icons/outline/emoji-happy.blade.php new file mode 100644 index 00000000..a708702d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/emoji-happy.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/emoji-sad.blade.php b/resources/views/vendor/wireui/components/icons/outline/emoji-sad.blade.php new file mode 100644 index 00000000..e298e86f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/emoji-sad.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/exclamation-circle.blade.php b/resources/views/vendor/wireui/components/icons/outline/exclamation-circle.blade.php new file mode 100644 index 00000000..c3c6f1c4 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/exclamation-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/exclamation.blade.php b/resources/views/vendor/wireui/components/icons/outline/exclamation.blade.php new file mode 100644 index 00000000..4a152d2c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/exclamation.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/external-link.blade.php b/resources/views/vendor/wireui/components/icons/outline/external-link.blade.php new file mode 100644 index 00000000..5d4a0b3f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/external-link.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/eye-off.blade.php b/resources/views/vendor/wireui/components/icons/outline/eye-off.blade.php new file mode 100644 index 00000000..ac278b6f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/eye-off.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/eye.blade.php b/resources/views/vendor/wireui/components/icons/outline/eye.blade.php new file mode 100644 index 00000000..31881810 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/eye.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/fast-forward.blade.php b/resources/views/vendor/wireui/components/icons/outline/fast-forward.blade.php new file mode 100644 index 00000000..4166e6f1 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/fast-forward.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/film.blade.php b/resources/views/vendor/wireui/components/icons/outline/film.blade.php new file mode 100644 index 00000000..96ddef61 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/film.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/filter.blade.php b/resources/views/vendor/wireui/components/icons/outline/filter.blade.php new file mode 100644 index 00000000..88ac822d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/filter.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/finger-print.blade.php b/resources/views/vendor/wireui/components/icons/outline/finger-print.blade.php new file mode 100644 index 00000000..5cbd272c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/finger-print.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/fire.blade.php b/resources/views/vendor/wireui/components/icons/outline/fire.blade.php new file mode 100644 index 00000000..1b4919a8 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/fire.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/flag.blade.php b/resources/views/vendor/wireui/components/icons/outline/flag.blade.php new file mode 100644 index 00000000..031df807 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/flag.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/folder-add.blade.php b/resources/views/vendor/wireui/components/icons/outline/folder-add.blade.php new file mode 100644 index 00000000..55995100 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/folder-add.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/folder-download.blade.php b/resources/views/vendor/wireui/components/icons/outline/folder-download.blade.php new file mode 100644 index 00000000..9538029f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/folder-download.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/folder-open.blade.php b/resources/views/vendor/wireui/components/icons/outline/folder-open.blade.php new file mode 100644 index 00000000..eca042b7 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/folder-open.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/folder-remove.blade.php b/resources/views/vendor/wireui/components/icons/outline/folder-remove.blade.php new file mode 100644 index 00000000..e52215e8 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/folder-remove.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/folder.blade.php b/resources/views/vendor/wireui/components/icons/outline/folder.blade.php new file mode 100644 index 00000000..6410f2c1 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/folder.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/gift.blade.php b/resources/views/vendor/wireui/components/icons/outline/gift.blade.php new file mode 100644 index 00000000..4e91e659 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/gift.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/globe-alt.blade.php b/resources/views/vendor/wireui/components/icons/outline/globe-alt.blade.php new file mode 100644 index 00000000..992d3072 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/globe-alt.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/globe.blade.php b/resources/views/vendor/wireui/components/icons/outline/globe.blade.php new file mode 100644 index 00000000..99e5fb6e --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/globe.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/hand.blade.php b/resources/views/vendor/wireui/components/icons/outline/hand.blade.php new file mode 100644 index 00000000..26c70396 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/hand.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/hashtag.blade.php b/resources/views/vendor/wireui/components/icons/outline/hashtag.blade.php new file mode 100644 index 00000000..83122805 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/hashtag.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/heart.blade.php b/resources/views/vendor/wireui/components/icons/outline/heart.blade.php new file mode 100644 index 00000000..df0f7d38 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/heart.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/home.blade.php b/resources/views/vendor/wireui/components/icons/outline/home.blade.php new file mode 100644 index 00000000..7d07cee1 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/home.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/identification.blade.php b/resources/views/vendor/wireui/components/icons/outline/identification.blade.php new file mode 100644 index 00000000..906c0cb9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/identification.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/inbox-in.blade.php b/resources/views/vendor/wireui/components/icons/outline/inbox-in.blade.php new file mode 100644 index 00000000..9a1a4ef9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/inbox-in.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/inbox.blade.php b/resources/views/vendor/wireui/components/icons/outline/inbox.blade.php new file mode 100644 index 00000000..af154458 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/inbox.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/information-circle.blade.php b/resources/views/vendor/wireui/components/icons/outline/information-circle.blade.php new file mode 100644 index 00000000..88200c47 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/information-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/key.blade.php b/resources/views/vendor/wireui/components/icons/outline/key.blade.php new file mode 100644 index 00000000..b2d4a4a9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/key.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/library.blade.php b/resources/views/vendor/wireui/components/icons/outline/library.blade.php new file mode 100644 index 00000000..02bc6ee3 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/library.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/light-bulb.blade.php b/resources/views/vendor/wireui/components/icons/outline/light-bulb.blade.php new file mode 100644 index 00000000..2aaa3c30 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/light-bulb.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/lightning-bolt.blade.php b/resources/views/vendor/wireui/components/icons/outline/lightning-bolt.blade.php new file mode 100644 index 00000000..912118cb --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/lightning-bolt.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/link.blade.php b/resources/views/vendor/wireui/components/icons/outline/link.blade.php new file mode 100644 index 00000000..0b8ffb9b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/link.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/location-marker.blade.php b/resources/views/vendor/wireui/components/icons/outline/location-marker.blade.php new file mode 100644 index 00000000..7bd96228 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/location-marker.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/lock-closed.blade.php b/resources/views/vendor/wireui/components/icons/outline/lock-closed.blade.php new file mode 100644 index 00000000..372d7777 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/lock-closed.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/lock-open.blade.php b/resources/views/vendor/wireui/components/icons/outline/lock-open.blade.php new file mode 100644 index 00000000..f1625c56 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/lock-open.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/login.blade.php b/resources/views/vendor/wireui/components/icons/outline/login.blade.php new file mode 100644 index 00000000..77a54a43 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/login.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/logout.blade.php b/resources/views/vendor/wireui/components/icons/outline/logout.blade.php new file mode 100644 index 00000000..708dba2f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/logout.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/mail-open.blade.php b/resources/views/vendor/wireui/components/icons/outline/mail-open.blade.php new file mode 100644 index 00000000..52a1b281 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/mail-open.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/mail.blade.php b/resources/views/vendor/wireui/components/icons/outline/mail.blade.php new file mode 100644 index 00000000..0cfc49c0 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/mail.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/map.blade.php b/resources/views/vendor/wireui/components/icons/outline/map.blade.php new file mode 100644 index 00000000..9d4fb5ee --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/map.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/menu-alt-1.blade.php b/resources/views/vendor/wireui/components/icons/outline/menu-alt-1.blade.php new file mode 100644 index 00000000..8799b14f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/menu-alt-1.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/menu-alt-2.blade.php b/resources/views/vendor/wireui/components/icons/outline/menu-alt-2.blade.php new file mode 100644 index 00000000..070021e7 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/menu-alt-2.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/menu-alt-3.blade.php b/resources/views/vendor/wireui/components/icons/outline/menu-alt-3.blade.php new file mode 100644 index 00000000..b806db9d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/menu-alt-3.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/menu-alt-4.blade.php b/resources/views/vendor/wireui/components/icons/outline/menu-alt-4.blade.php new file mode 100644 index 00000000..4111aa1a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/menu-alt-4.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/menu.blade.php b/resources/views/vendor/wireui/components/icons/outline/menu.blade.php new file mode 100644 index 00000000..932444c4 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/menu.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/microphone.blade.php b/resources/views/vendor/wireui/components/icons/outline/microphone.blade.php new file mode 100644 index 00000000..38ba49c5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/microphone.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/minus-circle.blade.php b/resources/views/vendor/wireui/components/icons/outline/minus-circle.blade.php new file mode 100644 index 00000000..b8bc2fcc --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/minus-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/minus-sm.blade.php b/resources/views/vendor/wireui/components/icons/outline/minus-sm.blade.php new file mode 100644 index 00000000..49451210 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/minus-sm.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/minus.blade.php b/resources/views/vendor/wireui/components/icons/outline/minus.blade.php new file mode 100644 index 00000000..3662e2af --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/minus.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/moon.blade.php b/resources/views/vendor/wireui/components/icons/outline/moon.blade.php new file mode 100644 index 00000000..d0e9b552 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/moon.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/music-note.blade.php b/resources/views/vendor/wireui/components/icons/outline/music-note.blade.php new file mode 100644 index 00000000..7cdb834b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/music-note.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/newspaper.blade.php b/resources/views/vendor/wireui/components/icons/outline/newspaper.blade.php new file mode 100644 index 00000000..300aaa6b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/newspaper.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/office-building.blade.php b/resources/views/vendor/wireui/components/icons/outline/office-building.blade.php new file mode 100644 index 00000000..fe4423ae --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/office-building.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/paper-airplane.blade.php b/resources/views/vendor/wireui/components/icons/outline/paper-airplane.blade.php new file mode 100644 index 00000000..b8cb3d7e --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/paper-airplane.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/paper-clip.blade.php b/resources/views/vendor/wireui/components/icons/outline/paper-clip.blade.php new file mode 100644 index 00000000..95dad049 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/paper-clip.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/pause.blade.php b/resources/views/vendor/wireui/components/icons/outline/pause.blade.php new file mode 100644 index 00000000..027cb15f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/pause.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/pencil-alt.blade.php b/resources/views/vendor/wireui/components/icons/outline/pencil-alt.blade.php new file mode 100644 index 00000000..91e42632 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/pencil-alt.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/pencil.blade.php b/resources/views/vendor/wireui/components/icons/outline/pencil.blade.php new file mode 100644 index 00000000..fa6ff732 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/pencil.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/phone-incoming.blade.php b/resources/views/vendor/wireui/components/icons/outline/phone-incoming.blade.php new file mode 100644 index 00000000..626b595a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/phone-incoming.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/phone-missed-call.blade.php b/resources/views/vendor/wireui/components/icons/outline/phone-missed-call.blade.php new file mode 100644 index 00000000..5e014293 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/phone-missed-call.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/phone-outgoing.blade.php b/resources/views/vendor/wireui/components/icons/outline/phone-outgoing.blade.php new file mode 100644 index 00000000..8f9beed9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/phone-outgoing.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/phone.blade.php b/resources/views/vendor/wireui/components/icons/outline/phone.blade.php new file mode 100644 index 00000000..f8d8e13f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/phone.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/photograph.blade.php b/resources/views/vendor/wireui/components/icons/outline/photograph.blade.php new file mode 100644 index 00000000..d619d1f4 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/photograph.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/play.blade.php b/resources/views/vendor/wireui/components/icons/outline/play.blade.php new file mode 100644 index 00000000..8b6bab6c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/play.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/plus-circle.blade.php b/resources/views/vendor/wireui/components/icons/outline/plus-circle.blade.php new file mode 100644 index 00000000..0b050168 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/plus-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/plus-sm.blade.php b/resources/views/vendor/wireui/components/icons/outline/plus-sm.blade.php new file mode 100644 index 00000000..56f4de16 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/plus-sm.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/plus.blade.php b/resources/views/vendor/wireui/components/icons/outline/plus.blade.php new file mode 100644 index 00000000..56f4de16 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/plus.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/presentation-chart-bar.blade.php b/resources/views/vendor/wireui/components/icons/outline/presentation-chart-bar.blade.php new file mode 100644 index 00000000..1dadf30b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/presentation-chart-bar.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/presentation-chart-line.blade.php b/resources/views/vendor/wireui/components/icons/outline/presentation-chart-line.blade.php new file mode 100644 index 00000000..1c8d3ac3 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/presentation-chart-line.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/printer.blade.php b/resources/views/vendor/wireui/components/icons/outline/printer.blade.php new file mode 100644 index 00000000..79212e60 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/printer.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/puzzle.blade.php b/resources/views/vendor/wireui/components/icons/outline/puzzle.blade.php new file mode 100644 index 00000000..0409a73e --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/puzzle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/qrcode.blade.php b/resources/views/vendor/wireui/components/icons/outline/qrcode.blade.php new file mode 100644 index 00000000..8e22e10d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/qrcode.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/question-mark-circle.blade.php b/resources/views/vendor/wireui/components/icons/outline/question-mark-circle.blade.php new file mode 100644 index 00000000..efd23674 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/question-mark-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/receipt-refund.blade.php b/resources/views/vendor/wireui/components/icons/outline/receipt-refund.blade.php new file mode 100644 index 00000000..49faa1a6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/receipt-refund.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/receipt-tax.blade.php b/resources/views/vendor/wireui/components/icons/outline/receipt-tax.blade.php new file mode 100644 index 00000000..c76b6b98 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/receipt-tax.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/refresh.blade.php b/resources/views/vendor/wireui/components/icons/outline/refresh.blade.php new file mode 100644 index 00000000..b30efb08 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/refresh.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/reply.blade.php b/resources/views/vendor/wireui/components/icons/outline/reply.blade.php new file mode 100644 index 00000000..8915191b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/reply.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/rewind.blade.php b/resources/views/vendor/wireui/components/icons/outline/rewind.blade.php new file mode 100644 index 00000000..d18f8223 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/rewind.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/rss.blade.php b/resources/views/vendor/wireui/components/icons/outline/rss.blade.php new file mode 100644 index 00000000..58b7fbde --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/rss.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/save-as.blade.php b/resources/views/vendor/wireui/components/icons/outline/save-as.blade.php new file mode 100644 index 00000000..64f6659f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/save-as.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/save.blade.php b/resources/views/vendor/wireui/components/icons/outline/save.blade.php new file mode 100644 index 00000000..ec0b8a76 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/save.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/scale.blade.php b/resources/views/vendor/wireui/components/icons/outline/scale.blade.php new file mode 100644 index 00000000..f0210cb6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/scale.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/scissors.blade.php b/resources/views/vendor/wireui/components/icons/outline/scissors.blade.php new file mode 100644 index 00000000..229316e5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/scissors.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/search-circle.blade.php b/resources/views/vendor/wireui/components/icons/outline/search-circle.blade.php new file mode 100644 index 00000000..3a54233c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/search-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/search.blade.php b/resources/views/vendor/wireui/components/icons/outline/search.blade.php new file mode 100644 index 00000000..3ba237b6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/search.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/selector.blade.php b/resources/views/vendor/wireui/components/icons/outline/selector.blade.php new file mode 100644 index 00000000..bdb26d10 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/selector.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/server.blade.php b/resources/views/vendor/wireui/components/icons/outline/server.blade.php new file mode 100644 index 00000000..a707d9fe --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/server.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/share.blade.php b/resources/views/vendor/wireui/components/icons/outline/share.blade.php new file mode 100644 index 00000000..6023f16c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/share.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/shield-check.blade.php b/resources/views/vendor/wireui/components/icons/outline/shield-check.blade.php new file mode 100644 index 00000000..3ab3ed3b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/shield-check.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/shield-exclamation.blade.php b/resources/views/vendor/wireui/components/icons/outline/shield-exclamation.blade.php new file mode 100644 index 00000000..3f696ac5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/shield-exclamation.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/shopping-bag.blade.php b/resources/views/vendor/wireui/components/icons/outline/shopping-bag.blade.php new file mode 100644 index 00000000..48efae7d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/shopping-bag.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/shopping-cart.blade.php b/resources/views/vendor/wireui/components/icons/outline/shopping-cart.blade.php new file mode 100644 index 00000000..0b3b02a6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/shopping-cart.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/sort-ascending.blade.php b/resources/views/vendor/wireui/components/icons/outline/sort-ascending.blade.php new file mode 100644 index 00000000..7cc2888c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/sort-ascending.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/sort-descending.blade.php b/resources/views/vendor/wireui/components/icons/outline/sort-descending.blade.php new file mode 100644 index 00000000..4910baae --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/sort-descending.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/sparkles.blade.php b/resources/views/vendor/wireui/components/icons/outline/sparkles.blade.php new file mode 100644 index 00000000..7fa0bc95 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/sparkles.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/speakerphone.blade.php b/resources/views/vendor/wireui/components/icons/outline/speakerphone.blade.php new file mode 100644 index 00000000..1eac7a2e --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/speakerphone.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/star.blade.php b/resources/views/vendor/wireui/components/icons/outline/star.blade.php new file mode 100644 index 00000000..2a519bd3 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/star.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/status-offline.blade.php b/resources/views/vendor/wireui/components/icons/outline/status-offline.blade.php new file mode 100644 index 00000000..4d5f27a1 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/status-offline.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/status-online.blade.php b/resources/views/vendor/wireui/components/icons/outline/status-online.blade.php new file mode 100644 index 00000000..88859a9c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/status-online.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/stop.blade.php b/resources/views/vendor/wireui/components/icons/outline/stop.blade.php new file mode 100644 index 00000000..8c37e167 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/stop.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/sun.blade.php b/resources/views/vendor/wireui/components/icons/outline/sun.blade.php new file mode 100644 index 00000000..eb546ab2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/sun.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/support.blade.php b/resources/views/vendor/wireui/components/icons/outline/support.blade.php new file mode 100644 index 00000000..ac3b7beb --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/support.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/switch-horizontal.blade.php b/resources/views/vendor/wireui/components/icons/outline/switch-horizontal.blade.php new file mode 100644 index 00000000..f6430cf8 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/switch-horizontal.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/switch-vertical.blade.php b/resources/views/vendor/wireui/components/icons/outline/switch-vertical.blade.php new file mode 100644 index 00000000..3aa52815 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/switch-vertical.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/table.blade.php b/resources/views/vendor/wireui/components/icons/outline/table.blade.php new file mode 100644 index 00000000..49d12737 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/table.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/tag.blade.php b/resources/views/vendor/wireui/components/icons/outline/tag.blade.php new file mode 100644 index 00000000..a9ddc5c8 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/tag.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/template.blade.php b/resources/views/vendor/wireui/components/icons/outline/template.blade.php new file mode 100644 index 00000000..a3d174c9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/template.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/terminal.blade.php b/resources/views/vendor/wireui/components/icons/outline/terminal.blade.php new file mode 100644 index 00000000..162ef7e9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/terminal.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/thumb-down.blade.php b/resources/views/vendor/wireui/components/icons/outline/thumb-down.blade.php new file mode 100644 index 00000000..9ce537fe --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/thumb-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/thumb-up.blade.php b/resources/views/vendor/wireui/components/icons/outline/thumb-up.blade.php new file mode 100644 index 00000000..b28ece14 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/thumb-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/ticket.blade.php b/resources/views/vendor/wireui/components/icons/outline/ticket.blade.php new file mode 100644 index 00000000..19c2294b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/ticket.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/translate.blade.php b/resources/views/vendor/wireui/components/icons/outline/translate.blade.php new file mode 100644 index 00000000..d85bd113 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/translate.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/trash.blade.php b/resources/views/vendor/wireui/components/icons/outline/trash.blade.php new file mode 100644 index 00000000..a0f108ac --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/trash.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/trending-down.blade.php b/resources/views/vendor/wireui/components/icons/outline/trending-down.blade.php new file mode 100644 index 00000000..acc445f2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/trending-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/trending-up.blade.php b/resources/views/vendor/wireui/components/icons/outline/trending-up.blade.php new file mode 100644 index 00000000..cf13c1a6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/trending-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/truck.blade.php b/resources/views/vendor/wireui/components/icons/outline/truck.blade.php new file mode 100644 index 00000000..bb26e131 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/truck.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/upload.blade.php b/resources/views/vendor/wireui/components/icons/outline/upload.blade.php new file mode 100644 index 00000000..d38dbd2f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/upload.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/user-add.blade.php b/resources/views/vendor/wireui/components/icons/outline/user-add.blade.php new file mode 100644 index 00000000..8e8f2317 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/user-add.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/user-circle.blade.php b/resources/views/vendor/wireui/components/icons/outline/user-circle.blade.php new file mode 100644 index 00000000..92c6f365 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/user-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/user-group.blade.php b/resources/views/vendor/wireui/components/icons/outline/user-group.blade.php new file mode 100644 index 00000000..1e2c7dac --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/user-group.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/user-remove.blade.php b/resources/views/vendor/wireui/components/icons/outline/user-remove.blade.php new file mode 100644 index 00000000..75ca62fc --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/user-remove.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/user.blade.php b/resources/views/vendor/wireui/components/icons/outline/user.blade.php new file mode 100644 index 00000000..04ce28cf --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/user.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/users.blade.php b/resources/views/vendor/wireui/components/icons/outline/users.blade.php new file mode 100644 index 00000000..f10109ff --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/users.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/variable.blade.php b/resources/views/vendor/wireui/components/icons/outline/variable.blade.php new file mode 100644 index 00000000..463b7cdd --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/variable.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/video-camera.blade.php b/resources/views/vendor/wireui/components/icons/outline/video-camera.blade.php new file mode 100644 index 00000000..77537205 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/video-camera.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/view-boards.blade.php b/resources/views/vendor/wireui/components/icons/outline/view-boards.blade.php new file mode 100644 index 00000000..466cb704 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/view-boards.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/view-grid-add.blade.php b/resources/views/vendor/wireui/components/icons/outline/view-grid-add.blade.php new file mode 100644 index 00000000..57dcbf6d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/view-grid-add.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/view-grid.blade.php b/resources/views/vendor/wireui/components/icons/outline/view-grid.blade.php new file mode 100644 index 00000000..6aff5233 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/view-grid.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/view-list.blade.php b/resources/views/vendor/wireui/components/icons/outline/view-list.blade.php new file mode 100644 index 00000000..b0875766 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/view-list.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/volume-off.blade.php b/resources/views/vendor/wireui/components/icons/outline/volume-off.blade.php new file mode 100644 index 00000000..0795abf3 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/volume-off.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/volume-up.blade.php b/resources/views/vendor/wireui/components/icons/outline/volume-up.blade.php new file mode 100644 index 00000000..596ca770 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/volume-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/wifi.blade.php b/resources/views/vendor/wireui/components/icons/outline/wifi.blade.php new file mode 100644 index 00000000..22bf1ff2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/wifi.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/x-circle.blade.php b/resources/views/vendor/wireui/components/icons/outline/x-circle.blade.php new file mode 100644 index 00000000..107f64de --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/x-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/x.blade.php b/resources/views/vendor/wireui/components/icons/outline/x.blade.php new file mode 100644 index 00000000..7c6df158 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/x.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/zoom-in.blade.php b/resources/views/vendor/wireui/components/icons/outline/zoom-in.blade.php new file mode 100644 index 00000000..9a320808 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/zoom-in.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/outline/zoom-out.blade.php b/resources/views/vendor/wireui/components/icons/outline/zoom-out.blade.php new file mode 100644 index 00000000..25dc1195 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/outline/zoom-out.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/academic-cap.blade.php b/resources/views/vendor/wireui/components/icons/solid/academic-cap.blade.php new file mode 100644 index 00000000..9a7fb412 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/academic-cap.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/adjustments.blade.php b/resources/views/vendor/wireui/components/icons/solid/adjustments.blade.php new file mode 100644 index 00000000..26405500 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/adjustments.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/annotation.blade.php b/resources/views/vendor/wireui/components/icons/solid/annotation.blade.php new file mode 100644 index 00000000..8ef896a7 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/annotation.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/archive.blade.php b/resources/views/vendor/wireui/components/icons/solid/archive.blade.php new file mode 100644 index 00000000..bfd151e5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/archive.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-circle-down.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-circle-down.blade.php new file mode 100644 index 00000000..464a2d77 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-circle-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-circle-left.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-circle-left.blade.php new file mode 100644 index 00000000..69399725 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-circle-left.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-circle-right.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-circle-right.blade.php new file mode 100644 index 00000000..1bbe63ce --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-circle-right.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-circle-up.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-circle-up.blade.php new file mode 100644 index 00000000..8e925972 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-circle-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-down.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-down.blade.php new file mode 100644 index 00000000..0b6c0970 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-left.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-left.blade.php new file mode 100644 index 00000000..67edc4c2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-left.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-down.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-down.blade.php new file mode 100644 index 00000000..da7fe553 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-left.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-left.blade.php new file mode 100644 index 00000000..6119006c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-left.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-right.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-right.blade.php new file mode 100644 index 00000000..4669f2d9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-right.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-up.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-up.blade.php new file mode 100644 index 00000000..c3a3e9cf --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-narrow-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-right.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-right.blade.php new file mode 100644 index 00000000..11cbb88b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-right.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrow-up.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrow-up.blade.php new file mode 100644 index 00000000..238736d2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrow-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/arrows-expand.blade.php b/resources/views/vendor/wireui/components/icons/solid/arrows-expand.blade.php new file mode 100644 index 00000000..52e5121b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/arrows-expand.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/at-symbol.blade.php b/resources/views/vendor/wireui/components/icons/solid/at-symbol.blade.php new file mode 100644 index 00000000..01885fe4 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/at-symbol.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/backspace.blade.php b/resources/views/vendor/wireui/components/icons/solid/backspace.blade.php new file mode 100644 index 00000000..3bb93c28 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/backspace.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/badge-check.blade.php b/resources/views/vendor/wireui/components/icons/solid/badge-check.blade.php new file mode 100644 index 00000000..40b45797 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/badge-check.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/ban.blade.php b/resources/views/vendor/wireui/components/icons/solid/ban.blade.php new file mode 100644 index 00000000..2da1210d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/ban.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/beaker.blade.php b/resources/views/vendor/wireui/components/icons/solid/beaker.blade.php new file mode 100644 index 00000000..aa528dda --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/beaker.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/bell.blade.php b/resources/views/vendor/wireui/components/icons/solid/bell.blade.php new file mode 100644 index 00000000..f0a966e9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/bell.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/book-open.blade.php b/resources/views/vendor/wireui/components/icons/solid/book-open.blade.php new file mode 100644 index 00000000..f54d4787 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/book-open.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/bookmark-alt.blade.php b/resources/views/vendor/wireui/components/icons/solid/bookmark-alt.blade.php new file mode 100644 index 00000000..c8c6eec7 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/bookmark-alt.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/bookmark.blade.php b/resources/views/vendor/wireui/components/icons/solid/bookmark.blade.php new file mode 100644 index 00000000..cd0a0d9a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/bookmark.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/briefcase.blade.php b/resources/views/vendor/wireui/components/icons/solid/briefcase.blade.php new file mode 100644 index 00000000..48ce32ec --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/briefcase.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/cake.blade.php b/resources/views/vendor/wireui/components/icons/solid/cake.blade.php new file mode 100644 index 00000000..e4aec1ff --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/cake.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/calculator.blade.php b/resources/views/vendor/wireui/components/icons/solid/calculator.blade.php new file mode 100644 index 00000000..b42c7d25 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/calculator.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/calendar.blade.php b/resources/views/vendor/wireui/components/icons/solid/calendar.blade.php new file mode 100644 index 00000000..6c0e82a2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/calendar.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/camera.blade.php b/resources/views/vendor/wireui/components/icons/solid/camera.blade.php new file mode 100644 index 00000000..9d54e4a4 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/camera.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/cash.blade.php b/resources/views/vendor/wireui/components/icons/solid/cash.blade.php new file mode 100644 index 00000000..3f77f78f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/cash.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chart-bar.blade.php b/resources/views/vendor/wireui/components/icons/solid/chart-bar.blade.php new file mode 100644 index 00000000..5d4a49ac --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chart-bar.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chart-pie.blade.php b/resources/views/vendor/wireui/components/icons/solid/chart-pie.blade.php new file mode 100644 index 00000000..58349658 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chart-pie.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chart-square-bar.blade.php b/resources/views/vendor/wireui/components/icons/solid/chart-square-bar.blade.php new file mode 100644 index 00000000..f0c4d4f8 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chart-square-bar.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chat-alt-2.blade.php b/resources/views/vendor/wireui/components/icons/solid/chat-alt-2.blade.php new file mode 100644 index 00000000..70b1e75f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chat-alt-2.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chat-alt.blade.php b/resources/views/vendor/wireui/components/icons/solid/chat-alt.blade.php new file mode 100644 index 00000000..57dcd629 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chat-alt.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chat.blade.php b/resources/views/vendor/wireui/components/icons/solid/chat.blade.php new file mode 100644 index 00000000..2637661d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chat.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/check-circle.blade.php b/resources/views/vendor/wireui/components/icons/solid/check-circle.blade.php new file mode 100644 index 00000000..8578fe65 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/check-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/check.blade.php b/resources/views/vendor/wireui/components/icons/solid/check.blade.php new file mode 100644 index 00000000..35e58678 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/check.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chevron-double-down.blade.php b/resources/views/vendor/wireui/components/icons/solid/chevron-double-down.blade.php new file mode 100644 index 00000000..d6a49771 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chevron-double-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chevron-double-left.blade.php b/resources/views/vendor/wireui/components/icons/solid/chevron-double-left.blade.php new file mode 100644 index 00000000..abf998cc --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chevron-double-left.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chevron-double-right.blade.php b/resources/views/vendor/wireui/components/icons/solid/chevron-double-right.blade.php new file mode 100644 index 00000000..318ce8d3 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chevron-double-right.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chevron-double-up.blade.php b/resources/views/vendor/wireui/components/icons/solid/chevron-double-up.blade.php new file mode 100644 index 00000000..7e886531 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chevron-double-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chevron-down.blade.php b/resources/views/vendor/wireui/components/icons/solid/chevron-down.blade.php new file mode 100644 index 00000000..9dfe4b87 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chevron-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chevron-left.blade.php b/resources/views/vendor/wireui/components/icons/solid/chevron-left.blade.php new file mode 100644 index 00000000..462230a3 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chevron-left.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chevron-right.blade.php b/resources/views/vendor/wireui/components/icons/solid/chevron-right.blade.php new file mode 100644 index 00000000..dc2dfa3a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chevron-right.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chevron-up.blade.php b/resources/views/vendor/wireui/components/icons/solid/chevron-up.blade.php new file mode 100644 index 00000000..8e45a5c5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chevron-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/chip.blade.php b/resources/views/vendor/wireui/components/icons/solid/chip.blade.php new file mode 100644 index 00000000..112f3746 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/chip.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/clipboard-check.blade.php b/resources/views/vendor/wireui/components/icons/solid/clipboard-check.blade.php new file mode 100644 index 00000000..d21d9516 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/clipboard-check.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/clipboard-copy.blade.php b/resources/views/vendor/wireui/components/icons/solid/clipboard-copy.blade.php new file mode 100644 index 00000000..da29ed8d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/clipboard-copy.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/clipboard-list.blade.php b/resources/views/vendor/wireui/components/icons/solid/clipboard-list.blade.php new file mode 100644 index 00000000..ee107634 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/clipboard-list.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/clipboard.blade.php b/resources/views/vendor/wireui/components/icons/solid/clipboard.blade.php new file mode 100644 index 00000000..958c9847 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/clipboard.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/clock.blade.php b/resources/views/vendor/wireui/components/icons/solid/clock.blade.php new file mode 100644 index 00000000..9906fbef --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/clock.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/cloud-download.blade.php b/resources/views/vendor/wireui/components/icons/solid/cloud-download.blade.php new file mode 100644 index 00000000..71dceb90 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/cloud-download.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/cloud-upload.blade.php b/resources/views/vendor/wireui/components/icons/solid/cloud-upload.blade.php new file mode 100644 index 00000000..a4b9ad91 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/cloud-upload.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/cloud.blade.php b/resources/views/vendor/wireui/components/icons/solid/cloud.blade.php new file mode 100644 index 00000000..587b5227 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/cloud.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/code.blade.php b/resources/views/vendor/wireui/components/icons/solid/code.blade.php new file mode 100644 index 00000000..7de2bd79 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/code.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/cog.blade.php b/resources/views/vendor/wireui/components/icons/solid/cog.blade.php new file mode 100644 index 00000000..fef30273 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/cog.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/collection.blade.php b/resources/views/vendor/wireui/components/icons/solid/collection.blade.php new file mode 100644 index 00000000..e9955034 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/collection.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/color-swatch.blade.php b/resources/views/vendor/wireui/components/icons/solid/color-swatch.blade.php new file mode 100644 index 00000000..228dc201 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/color-swatch.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/credit-card.blade.php b/resources/views/vendor/wireui/components/icons/solid/credit-card.blade.php new file mode 100644 index 00000000..f6eeabf0 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/credit-card.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/cube-transparent.blade.php b/resources/views/vendor/wireui/components/icons/solid/cube-transparent.blade.php new file mode 100644 index 00000000..3b5fbbd1 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/cube-transparent.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/cube.blade.php b/resources/views/vendor/wireui/components/icons/solid/cube.blade.php new file mode 100644 index 00000000..392ed080 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/cube.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/currency-bangladeshi.blade.php b/resources/views/vendor/wireui/components/icons/solid/currency-bangladeshi.blade.php new file mode 100644 index 00000000..720a0a5d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/currency-bangladeshi.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/currency-dollar.blade.php b/resources/views/vendor/wireui/components/icons/solid/currency-dollar.blade.php new file mode 100644 index 00000000..fe7e5fab --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/currency-dollar.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/currency-euro.blade.php b/resources/views/vendor/wireui/components/icons/solid/currency-euro.blade.php new file mode 100644 index 00000000..8f7ad858 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/currency-euro.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/currency-pound.blade.php b/resources/views/vendor/wireui/components/icons/solid/currency-pound.blade.php new file mode 100644 index 00000000..347ac699 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/currency-pound.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/currency-rupee.blade.php b/resources/views/vendor/wireui/components/icons/solid/currency-rupee.blade.php new file mode 100644 index 00000000..5560cbdf --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/currency-rupee.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/currency-yen.blade.php b/resources/views/vendor/wireui/components/icons/solid/currency-yen.blade.php new file mode 100644 index 00000000..72632599 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/currency-yen.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/cursor-click.blade.php b/resources/views/vendor/wireui/components/icons/solid/cursor-click.blade.php new file mode 100644 index 00000000..8e646f72 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/cursor-click.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/database.blade.php b/resources/views/vendor/wireui/components/icons/solid/database.blade.php new file mode 100644 index 00000000..4b1902ce --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/database.blade.php @@ -0,0 +1,5 @@ + + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/desktop-computer.blade.php b/resources/views/vendor/wireui/components/icons/solid/desktop-computer.blade.php new file mode 100644 index 00000000..89658d69 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/desktop-computer.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/device-mobile.blade.php b/resources/views/vendor/wireui/components/icons/solid/device-mobile.blade.php new file mode 100644 index 00000000..3efffd9b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/device-mobile.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/device-tablet.blade.php b/resources/views/vendor/wireui/components/icons/solid/device-tablet.blade.php new file mode 100644 index 00000000..a8647aec --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/device-tablet.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/document-add.blade.php b/resources/views/vendor/wireui/components/icons/solid/document-add.blade.php new file mode 100644 index 00000000..44801432 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/document-add.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/document-download.blade.php b/resources/views/vendor/wireui/components/icons/solid/document-download.blade.php new file mode 100644 index 00000000..35f740ee --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/document-download.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/document-duplicate.blade.php b/resources/views/vendor/wireui/components/icons/solid/document-duplicate.blade.php new file mode 100644 index 00000000..85b901b7 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/document-duplicate.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/document-remove.blade.php b/resources/views/vendor/wireui/components/icons/solid/document-remove.blade.php new file mode 100644 index 00000000..28fc5ab7 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/document-remove.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/document-report.blade.php b/resources/views/vendor/wireui/components/icons/solid/document-report.blade.php new file mode 100644 index 00000000..219b2bfd --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/document-report.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/document-search.blade.php b/resources/views/vendor/wireui/components/icons/solid/document-search.blade.php new file mode 100644 index 00000000..8a215cd4 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/document-search.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/document-text.blade.php b/resources/views/vendor/wireui/components/icons/solid/document-text.blade.php new file mode 100644 index 00000000..090b4963 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/document-text.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/document.blade.php b/resources/views/vendor/wireui/components/icons/solid/document.blade.php new file mode 100644 index 00000000..5b2abd62 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/document.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/dots-circle-horizontal.blade.php b/resources/views/vendor/wireui/components/icons/solid/dots-circle-horizontal.blade.php new file mode 100644 index 00000000..ab6d201c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/dots-circle-horizontal.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/dots-horizontal.blade.php b/resources/views/vendor/wireui/components/icons/solid/dots-horizontal.blade.php new file mode 100644 index 00000000..f2ac43e9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/dots-horizontal.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/dots-vertical.blade.php b/resources/views/vendor/wireui/components/icons/solid/dots-vertical.blade.php new file mode 100644 index 00000000..824e2cc5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/dots-vertical.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/download.blade.php b/resources/views/vendor/wireui/components/icons/solid/download.blade.php new file mode 100644 index 00000000..f8a3fc6b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/download.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/duplicate.blade.php b/resources/views/vendor/wireui/components/icons/solid/duplicate.blade.php new file mode 100644 index 00000000..2e320381 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/duplicate.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/emoji-happy.blade.php b/resources/views/vendor/wireui/components/icons/solid/emoji-happy.blade.php new file mode 100644 index 00000000..cbd8d78a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/emoji-happy.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/emoji-sad.blade.php b/resources/views/vendor/wireui/components/icons/solid/emoji-sad.blade.php new file mode 100644 index 00000000..92e0aec2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/emoji-sad.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/exclamation-circle.blade.php b/resources/views/vendor/wireui/components/icons/solid/exclamation-circle.blade.php new file mode 100644 index 00000000..b70fefee --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/exclamation-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/exclamation.blade.php b/resources/views/vendor/wireui/components/icons/solid/exclamation.blade.php new file mode 100644 index 00000000..bb2d525a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/exclamation.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/external-link.blade.php b/resources/views/vendor/wireui/components/icons/solid/external-link.blade.php new file mode 100644 index 00000000..a4d73c58 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/external-link.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/eye-off.blade.php b/resources/views/vendor/wireui/components/icons/solid/eye-off.blade.php new file mode 100644 index 00000000..fd8156b1 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/eye-off.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/eye.blade.php b/resources/views/vendor/wireui/components/icons/solid/eye.blade.php new file mode 100644 index 00000000..988b9793 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/eye.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/fast-forward.blade.php b/resources/views/vendor/wireui/components/icons/solid/fast-forward.blade.php new file mode 100644 index 00000000..7a0c5a94 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/fast-forward.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/film.blade.php b/resources/views/vendor/wireui/components/icons/solid/film.blade.php new file mode 100644 index 00000000..37c12fbf --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/film.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/filter.blade.php b/resources/views/vendor/wireui/components/icons/solid/filter.blade.php new file mode 100644 index 00000000..c62459f0 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/filter.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/finger-print.blade.php b/resources/views/vendor/wireui/components/icons/solid/finger-print.blade.php new file mode 100644 index 00000000..0abb33e4 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/finger-print.blade.php @@ -0,0 +1,5 @@ + + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/fire.blade.php b/resources/views/vendor/wireui/components/icons/solid/fire.blade.php new file mode 100644 index 00000000..1964f878 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/fire.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/flag.blade.php b/resources/views/vendor/wireui/components/icons/solid/flag.blade.php new file mode 100644 index 00000000..9443cb9f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/flag.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/folder-add.blade.php b/resources/views/vendor/wireui/components/icons/solid/folder-add.blade.php new file mode 100644 index 00000000..fac59ba5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/folder-add.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/folder-download.blade.php b/resources/views/vendor/wireui/components/icons/solid/folder-download.blade.php new file mode 100644 index 00000000..6c326353 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/folder-download.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/folder-open.blade.php b/resources/views/vendor/wireui/components/icons/solid/folder-open.blade.php new file mode 100644 index 00000000..229ae67d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/folder-open.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/folder-remove.blade.php b/resources/views/vendor/wireui/components/icons/solid/folder-remove.blade.php new file mode 100644 index 00000000..8d8b0974 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/folder-remove.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/folder.blade.php b/resources/views/vendor/wireui/components/icons/solid/folder.blade.php new file mode 100644 index 00000000..8bd807cf --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/folder.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/gift.blade.php b/resources/views/vendor/wireui/components/icons/solid/gift.blade.php new file mode 100644 index 00000000..bb798906 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/gift.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/globe-alt.blade.php b/resources/views/vendor/wireui/components/icons/solid/globe-alt.blade.php new file mode 100644 index 00000000..407fadd9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/globe-alt.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/globe.blade.php b/resources/views/vendor/wireui/components/icons/solid/globe.blade.php new file mode 100644 index 00000000..93af0bb2 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/globe.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/hand.blade.php b/resources/views/vendor/wireui/components/icons/solid/hand.blade.php new file mode 100644 index 00000000..b2929caa --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/hand.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/hashtag.blade.php b/resources/views/vendor/wireui/components/icons/solid/hashtag.blade.php new file mode 100644 index 00000000..742e6429 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/hashtag.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/heart.blade.php b/resources/views/vendor/wireui/components/icons/solid/heart.blade.php new file mode 100644 index 00000000..37591786 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/heart.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/home.blade.php b/resources/views/vendor/wireui/components/icons/solid/home.blade.php new file mode 100644 index 00000000..b8719541 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/home.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/identification.blade.php b/resources/views/vendor/wireui/components/icons/solid/identification.blade.php new file mode 100644 index 00000000..da84c3a6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/identification.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/inbox-in.blade.php b/resources/views/vendor/wireui/components/icons/solid/inbox-in.blade.php new file mode 100644 index 00000000..66d2400a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/inbox-in.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/inbox.blade.php b/resources/views/vendor/wireui/components/icons/solid/inbox.blade.php new file mode 100644 index 00000000..fc0f42cc --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/inbox.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/information-circle.blade.php b/resources/views/vendor/wireui/components/icons/solid/information-circle.blade.php new file mode 100644 index 00000000..bacf44a6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/information-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/key.blade.php b/resources/views/vendor/wireui/components/icons/solid/key.blade.php new file mode 100644 index 00000000..626a56f7 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/key.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/library.blade.php b/resources/views/vendor/wireui/components/icons/solid/library.blade.php new file mode 100644 index 00000000..4ee75070 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/library.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/light-bulb.blade.php b/resources/views/vendor/wireui/components/icons/solid/light-bulb.blade.php new file mode 100644 index 00000000..6a3e9c2a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/light-bulb.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/lightning-bolt.blade.php b/resources/views/vendor/wireui/components/icons/solid/lightning-bolt.blade.php new file mode 100644 index 00000000..794adf66 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/lightning-bolt.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/link.blade.php b/resources/views/vendor/wireui/components/icons/solid/link.blade.php new file mode 100644 index 00000000..29c71ef8 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/link.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/location-marker.blade.php b/resources/views/vendor/wireui/components/icons/solid/location-marker.blade.php new file mode 100644 index 00000000..1535d723 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/location-marker.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/lock-closed.blade.php b/resources/views/vendor/wireui/components/icons/solid/lock-closed.blade.php new file mode 100644 index 00000000..9f8809cd --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/lock-closed.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/lock-open.blade.php b/resources/views/vendor/wireui/components/icons/solid/lock-open.blade.php new file mode 100644 index 00000000..a1c3a75c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/lock-open.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/login.blade.php b/resources/views/vendor/wireui/components/icons/solid/login.blade.php new file mode 100644 index 00000000..04fafc6a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/login.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/logout.blade.php b/resources/views/vendor/wireui/components/icons/solid/logout.blade.php new file mode 100644 index 00000000..b09ebdcc --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/logout.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/mail-open.blade.php b/resources/views/vendor/wireui/components/icons/solid/mail-open.blade.php new file mode 100644 index 00000000..844c9cf1 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/mail-open.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/mail.blade.php b/resources/views/vendor/wireui/components/icons/solid/mail.blade.php new file mode 100644 index 00000000..d55e6f8d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/mail.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/map.blade.php b/resources/views/vendor/wireui/components/icons/solid/map.blade.php new file mode 100644 index 00000000..babccb98 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/map.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/menu-alt-1.blade.php b/resources/views/vendor/wireui/components/icons/solid/menu-alt-1.blade.php new file mode 100644 index 00000000..cc8cbf9f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/menu-alt-1.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/menu-alt-2.blade.php b/resources/views/vendor/wireui/components/icons/solid/menu-alt-2.blade.php new file mode 100644 index 00000000..a60d12bb --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/menu-alt-2.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/menu-alt-3.blade.php b/resources/views/vendor/wireui/components/icons/solid/menu-alt-3.blade.php new file mode 100644 index 00000000..67376f8d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/menu-alt-3.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/menu-alt-4.blade.php b/resources/views/vendor/wireui/components/icons/solid/menu-alt-4.blade.php new file mode 100644 index 00000000..cb0ba7bd --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/menu-alt-4.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/menu.blade.php b/resources/views/vendor/wireui/components/icons/solid/menu.blade.php new file mode 100644 index 00000000..b2c87226 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/menu.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/microphone.blade.php b/resources/views/vendor/wireui/components/icons/solid/microphone.blade.php new file mode 100644 index 00000000..d6c50388 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/microphone.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/minus-circle.blade.php b/resources/views/vendor/wireui/components/icons/solid/minus-circle.blade.php new file mode 100644 index 00000000..f4a16243 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/minus-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/minus-sm.blade.php b/resources/views/vendor/wireui/components/icons/solid/minus-sm.blade.php new file mode 100644 index 00000000..fcceaeed --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/minus-sm.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/minus.blade.php b/resources/views/vendor/wireui/components/icons/solid/minus.blade.php new file mode 100644 index 00000000..383e1133 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/minus.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/moon.blade.php b/resources/views/vendor/wireui/components/icons/solid/moon.blade.php new file mode 100644 index 00000000..42553622 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/moon.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/music-note.blade.php b/resources/views/vendor/wireui/components/icons/solid/music-note.blade.php new file mode 100644 index 00000000..7ac6223a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/music-note.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/newspaper.blade.php b/resources/views/vendor/wireui/components/icons/solid/newspaper.blade.php new file mode 100644 index 00000000..b75d9f35 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/newspaper.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/office-building.blade.php b/resources/views/vendor/wireui/components/icons/solid/office-building.blade.php new file mode 100644 index 00000000..98dd4080 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/office-building.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/paper-airplane.blade.php b/resources/views/vendor/wireui/components/icons/solid/paper-airplane.blade.php new file mode 100644 index 00000000..333a8916 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/paper-airplane.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/paper-clip.blade.php b/resources/views/vendor/wireui/components/icons/solid/paper-clip.blade.php new file mode 100644 index 00000000..d3326a89 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/paper-clip.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/pause.blade.php b/resources/views/vendor/wireui/components/icons/solid/pause.blade.php new file mode 100644 index 00000000..e71361aa --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/pause.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/pencil-alt.blade.php b/resources/views/vendor/wireui/components/icons/solid/pencil-alt.blade.php new file mode 100644 index 00000000..5b803a31 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/pencil-alt.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/pencil.blade.php b/resources/views/vendor/wireui/components/icons/solid/pencil.blade.php new file mode 100644 index 00000000..35aeef8e --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/pencil.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/phone-incoming.blade.php b/resources/views/vendor/wireui/components/icons/solid/phone-incoming.blade.php new file mode 100644 index 00000000..443c3acb --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/phone-incoming.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/phone-missed-call.blade.php b/resources/views/vendor/wireui/components/icons/solid/phone-missed-call.blade.php new file mode 100644 index 00000000..cb3bad75 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/phone-missed-call.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/phone-outgoing.blade.php b/resources/views/vendor/wireui/components/icons/solid/phone-outgoing.blade.php new file mode 100644 index 00000000..7b652a0d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/phone-outgoing.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/phone.blade.php b/resources/views/vendor/wireui/components/icons/solid/phone.blade.php new file mode 100644 index 00000000..24e34077 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/phone.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/photograph.blade.php b/resources/views/vendor/wireui/components/icons/solid/photograph.blade.php new file mode 100644 index 00000000..54b13618 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/photograph.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/play.blade.php b/resources/views/vendor/wireui/components/icons/solid/play.blade.php new file mode 100644 index 00000000..95033145 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/play.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/plus-circle.blade.php b/resources/views/vendor/wireui/components/icons/solid/plus-circle.blade.php new file mode 100644 index 00000000..8f3dce31 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/plus-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/plus-sm.blade.php b/resources/views/vendor/wireui/components/icons/solid/plus-sm.blade.php new file mode 100644 index 00000000..f342ac27 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/plus-sm.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/plus.blade.php b/resources/views/vendor/wireui/components/icons/solid/plus.blade.php new file mode 100644 index 00000000..f342ac27 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/plus.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/presentation-chart-bar.blade.php b/resources/views/vendor/wireui/components/icons/solid/presentation-chart-bar.blade.php new file mode 100644 index 00000000..784fbf22 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/presentation-chart-bar.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/presentation-chart-line.blade.php b/resources/views/vendor/wireui/components/icons/solid/presentation-chart-line.blade.php new file mode 100644 index 00000000..3939bbdd --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/presentation-chart-line.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/printer.blade.php b/resources/views/vendor/wireui/components/icons/solid/printer.blade.php new file mode 100644 index 00000000..6f4c893d --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/printer.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/puzzle.blade.php b/resources/views/vendor/wireui/components/icons/solid/puzzle.blade.php new file mode 100644 index 00000000..1e11a350 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/puzzle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/qrcode.blade.php b/resources/views/vendor/wireui/components/icons/solid/qrcode.blade.php new file mode 100644 index 00000000..50f73522 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/qrcode.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/question-mark-circle.blade.php b/resources/views/vendor/wireui/components/icons/solid/question-mark-circle.blade.php new file mode 100644 index 00000000..2ea4857a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/question-mark-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/receipt-refund.blade.php b/resources/views/vendor/wireui/components/icons/solid/receipt-refund.blade.php new file mode 100644 index 00000000..3208553e --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/receipt-refund.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/receipt-tax.blade.php b/resources/views/vendor/wireui/components/icons/solid/receipt-tax.blade.php new file mode 100644 index 00000000..58566200 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/receipt-tax.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/refresh.blade.php b/resources/views/vendor/wireui/components/icons/solid/refresh.blade.php new file mode 100644 index 00000000..da9f03cc --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/refresh.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/reply.blade.php b/resources/views/vendor/wireui/components/icons/solid/reply.blade.php new file mode 100644 index 00000000..66b821b9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/reply.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/rewind.blade.php b/resources/views/vendor/wireui/components/icons/solid/rewind.blade.php new file mode 100644 index 00000000..cabfe6a5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/rewind.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/rss.blade.php b/resources/views/vendor/wireui/components/icons/solid/rss.blade.php new file mode 100644 index 00000000..b62d9df9 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/rss.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/save-as.blade.php b/resources/views/vendor/wireui/components/icons/solid/save-as.blade.php new file mode 100644 index 00000000..58b263ff --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/save-as.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/save.blade.php b/resources/views/vendor/wireui/components/icons/solid/save.blade.php new file mode 100644 index 00000000..da177450 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/save.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/scale.blade.php b/resources/views/vendor/wireui/components/icons/solid/scale.blade.php new file mode 100644 index 00000000..6f5892d8 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/scale.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/scissors.blade.php b/resources/views/vendor/wireui/components/icons/solid/scissors.blade.php new file mode 100644 index 00000000..76c1232c --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/scissors.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/search-circle.blade.php b/resources/views/vendor/wireui/components/icons/solid/search-circle.blade.php new file mode 100644 index 00000000..3b4f9d73 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/search-circle.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/search.blade.php b/resources/views/vendor/wireui/components/icons/solid/search.blade.php new file mode 100644 index 00000000..ead58453 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/search.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/selector.blade.php b/resources/views/vendor/wireui/components/icons/solid/selector.blade.php new file mode 100644 index 00000000..68f696bb --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/selector.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/server.blade.php b/resources/views/vendor/wireui/components/icons/solid/server.blade.php new file mode 100644 index 00000000..31c8a341 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/server.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/share.blade.php b/resources/views/vendor/wireui/components/icons/solid/share.blade.php new file mode 100644 index 00000000..dd40825f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/share.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/shield-check.blade.php b/resources/views/vendor/wireui/components/icons/solid/shield-check.blade.php new file mode 100644 index 00000000..9b51ec97 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/shield-check.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/shield-exclamation.blade.php b/resources/views/vendor/wireui/components/icons/solid/shield-exclamation.blade.php new file mode 100644 index 00000000..92974367 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/shield-exclamation.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/shopping-bag.blade.php b/resources/views/vendor/wireui/components/icons/solid/shopping-bag.blade.php new file mode 100644 index 00000000..d9372eba --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/shopping-bag.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/shopping-cart.blade.php b/resources/views/vendor/wireui/components/icons/solid/shopping-cart.blade.php new file mode 100644 index 00000000..2425368f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/shopping-cart.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/sort-ascending.blade.php b/resources/views/vendor/wireui/components/icons/solid/sort-ascending.blade.php new file mode 100644 index 00000000..663ac8bf --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/sort-ascending.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/sort-descending.blade.php b/resources/views/vendor/wireui/components/icons/solid/sort-descending.blade.php new file mode 100644 index 00000000..7ead6cf3 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/sort-descending.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/sparkles.blade.php b/resources/views/vendor/wireui/components/icons/solid/sparkles.blade.php new file mode 100644 index 00000000..231a041f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/sparkles.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/speakerphone.blade.php b/resources/views/vendor/wireui/components/icons/solid/speakerphone.blade.php new file mode 100644 index 00000000..6a240cb4 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/speakerphone.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/star.blade.php b/resources/views/vendor/wireui/components/icons/solid/star.blade.php new file mode 100644 index 00000000..c1b7b607 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/star.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/status-offline.blade.php b/resources/views/vendor/wireui/components/icons/solid/status-offline.blade.php new file mode 100644 index 00000000..f42a6908 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/status-offline.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/status-online.blade.php b/resources/views/vendor/wireui/components/icons/solid/status-online.blade.php new file mode 100644 index 00000000..06d6ffea --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/status-online.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/stop.blade.php b/resources/views/vendor/wireui/components/icons/solid/stop.blade.php new file mode 100644 index 00000000..9ed85b10 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/stop.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/sun.blade.php b/resources/views/vendor/wireui/components/icons/solid/sun.blade.php new file mode 100644 index 00000000..4db320aa --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/sun.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/support.blade.php b/resources/views/vendor/wireui/components/icons/solid/support.blade.php new file mode 100644 index 00000000..4c3b7a95 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/support.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/switch-horizontal.blade.php b/resources/views/vendor/wireui/components/icons/solid/switch-horizontal.blade.php new file mode 100644 index 00000000..a8968ac5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/switch-horizontal.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/switch-vertical.blade.php b/resources/views/vendor/wireui/components/icons/solid/switch-vertical.blade.php new file mode 100644 index 00000000..118866b1 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/switch-vertical.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/table.blade.php b/resources/views/vendor/wireui/components/icons/solid/table.blade.php new file mode 100644 index 00000000..970740f7 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/table.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/tag.blade.php b/resources/views/vendor/wireui/components/icons/solid/tag.blade.php new file mode 100644 index 00000000..cb5d95c0 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/tag.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/template.blade.php b/resources/views/vendor/wireui/components/icons/solid/template.blade.php new file mode 100644 index 00000000..bf9bcfa6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/template.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/terminal.blade.php b/resources/views/vendor/wireui/components/icons/solid/terminal.blade.php new file mode 100644 index 00000000..e71e4d13 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/terminal.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/thumb-down.blade.php b/resources/views/vendor/wireui/components/icons/solid/thumb-down.blade.php new file mode 100644 index 00000000..9a60b142 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/thumb-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/thumb-up.blade.php b/resources/views/vendor/wireui/components/icons/solid/thumb-up.blade.php new file mode 100644 index 00000000..1737e077 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/thumb-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/ticket.blade.php b/resources/views/vendor/wireui/components/icons/solid/ticket.blade.php new file mode 100644 index 00000000..37fde57a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/ticket.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/translate.blade.php b/resources/views/vendor/wireui/components/icons/solid/translate.blade.php new file mode 100644 index 00000000..ad6e0009 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/translate.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/trash.blade.php b/resources/views/vendor/wireui/components/icons/solid/trash.blade.php new file mode 100644 index 00000000..03688bae --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/trash.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/trending-down.blade.php b/resources/views/vendor/wireui/components/icons/solid/trending-down.blade.php new file mode 100644 index 00000000..dfdd9318 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/trending-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/trending-up.blade.php b/resources/views/vendor/wireui/components/icons/solid/trending-up.blade.php new file mode 100644 index 00000000..d0e907bd --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/trending-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/truck.blade.php b/resources/views/vendor/wireui/components/icons/solid/truck.blade.php new file mode 100644 index 00000000..83c54c1f --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/truck.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/upload.blade.php b/resources/views/vendor/wireui/components/icons/solid/upload.blade.php new file mode 100644 index 00000000..8bc4c72a --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/upload.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/user-add.blade.php b/resources/views/vendor/wireui/components/icons/solid/user-add.blade.php new file mode 100644 index 00000000..45bef78b --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/user-add.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/user-circle.blade.php b/resources/views/vendor/wireui/components/icons/solid/user-circle.blade.php new file mode 100644 index 00000000..7b50edc3 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/user-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/user-group.blade.php b/resources/views/vendor/wireui/components/icons/solid/user-group.blade.php new file mode 100644 index 00000000..c0891bde --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/user-group.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/user-remove.blade.php b/resources/views/vendor/wireui/components/icons/solid/user-remove.blade.php new file mode 100644 index 00000000..89591617 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/user-remove.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/user.blade.php b/resources/views/vendor/wireui/components/icons/solid/user.blade.php new file mode 100644 index 00000000..0b54faf6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/user.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/users.blade.php b/resources/views/vendor/wireui/components/icons/solid/users.blade.php new file mode 100644 index 00000000..a3982d08 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/users.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/variable.blade.php b/resources/views/vendor/wireui/components/icons/solid/variable.blade.php new file mode 100644 index 00000000..6a5e7070 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/variable.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/video-camera.blade.php b/resources/views/vendor/wireui/components/icons/solid/video-camera.blade.php new file mode 100644 index 00000000..e25648a5 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/video-camera.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/view-boards.blade.php b/resources/views/vendor/wireui/components/icons/solid/view-boards.blade.php new file mode 100644 index 00000000..2cbca623 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/view-boards.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/view-grid-add.blade.php b/resources/views/vendor/wireui/components/icons/solid/view-grid-add.blade.php new file mode 100644 index 00000000..a4b256dc --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/view-grid-add.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/view-grid.blade.php b/resources/views/vendor/wireui/components/icons/solid/view-grid.blade.php new file mode 100644 index 00000000..3603bedc --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/view-grid.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/view-list.blade.php b/resources/views/vendor/wireui/components/icons/solid/view-list.blade.php new file mode 100644 index 00000000..a5ce192e --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/view-list.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/volume-off.blade.php b/resources/views/vendor/wireui/components/icons/solid/volume-off.blade.php new file mode 100644 index 00000000..935e9074 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/volume-off.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/volume-up.blade.php b/resources/views/vendor/wireui/components/icons/solid/volume-up.blade.php new file mode 100644 index 00000000..e0368c02 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/volume-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/wifi.blade.php b/resources/views/vendor/wireui/components/icons/solid/wifi.blade.php new file mode 100644 index 00000000..07599016 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/wifi.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/x-circle.blade.php b/resources/views/vendor/wireui/components/icons/solid/x-circle.blade.php new file mode 100644 index 00000000..0d978c09 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/x-circle.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/x.blade.php b/resources/views/vendor/wireui/components/icons/solid/x.blade.php new file mode 100644 index 00000000..4b0339df --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/x.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/zoom-in.blade.php b/resources/views/vendor/wireui/components/icons/solid/zoom-in.blade.php new file mode 100644 index 00000000..9bacc6d6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/zoom-in.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/solid/zoom-out.blade.php b/resources/views/vendor/wireui/components/icons/solid/zoom-out.blade.php new file mode 100644 index 00000000..5b9ce649 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/solid/zoom-out.blade.php @@ -0,0 +1,4 @@ + + + + diff --git a/resources/views/vendor/wireui/components/icons/spinner.blade.php b/resources/views/vendor/wireui/components/icons/spinner.blade.php new file mode 100644 index 00000000..9730f8f6 --- /dev/null +++ b/resources/views/vendor/wireui/components/icons/spinner.blade.php @@ -0,0 +1,4 @@ +merge(['class' => 'animate-spin']) }} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> + + + diff --git a/resources/views/vendor/wireui/components/input.blade.php b/resources/views/vendor/wireui/components/input.blade.php new file mode 100644 index 00000000..65cd5b3e --- /dev/null +++ b/resources/views/vendor/wireui/components/input.blade.php @@ -0,0 +1,93 @@ +@php + $hasError = !$errorless && $name && $errors->has($name); +@endphp + +
+ @if ($label || $cornerHint) +
+ @if ($label) + + @endif + + @if ($cornerHint) + + @endif +
+ @endif + +
+ @if ($prefix || $icon) +
+ @if ($icon) + + @elseif($prefix) + + {{ $prefix }} + + @endif +
+ @elseif($prepend) + {{ $prepend }} + @endif + + class([ + $getInputClasses($hasError), + ])->merge([ + 'type' => 'text', + 'autocomplete' => 'off', + ]) }} /> + + @if ($suffix || $rightIcon || ($hasError && !$append)) +
+ @if ($rightIcon) + + @elseif ($suffix) + + {{ $suffix }} + + @elseif ($hasError) + + @endif +
+ @elseif ($append) + {{ $append }} + @endif +
+ + @if (!$hasError && $hint) + + @endif + + @if ($name && !$errorless) + + @endif +
diff --git a/resources/views/vendor/wireui/components/inputs/currency.blade.php b/resources/views/vendor/wireui/components/inputs/currency.blade.php new file mode 100644 index 00000000..286d28dd --- /dev/null +++ b/resources/views/vendor/wireui/components/inputs/currency.blade.php @@ -0,0 +1,27 @@ +
only('wire:key') }}> + whereDoesntStartWith(['wire:model', 'wire:key'])->except('type') }} + :borderless="$borderless" + :shadowless="$shadowless" + :label="$label" + :hint="$hint" + :corner-hint="$cornerHint" + :icon="$icon" + :right-icon="$rightIcon" + :prefix="$prefix" + :suffix="$suffix" + :prepend="$prepend" + :append="$append" + x-model="input" + x-on:input="mask($event.target.value)" + x-on:blur="emitInput($event.target.value)" + /> +
diff --git a/resources/views/vendor/wireui/components/inputs/maskable.blade.php b/resources/views/vendor/wireui/components/inputs/maskable.blade.php new file mode 100644 index 00000000..b8f35373 --- /dev/null +++ b/resources/views/vendor/wireui/components/inputs/maskable.blade.php @@ -0,0 +1,25 @@ +
only('wire:key') }}> + whereDoesntStartWith(['wire:model', 'x-model', 'wire:key']) }} + /> +
diff --git a/resources/views/vendor/wireui/components/inputs/number.blade.php b/resources/views/vendor/wireui/components/inputs/number.blade.php new file mode 100644 index 00000000..fd0eb681 --- /dev/null +++ b/resources/views/vendor/wireui/components/inputs/number.blade.php @@ -0,0 +1,54 @@ +
only('wire:key') }}> + class('text-center appearance-number-none') + ->whereDoesntStartWith('wire:key') + ->except($except) }} + :borderless="$borderless" + :shadowless="$shadowless" + :label="$label" + :hint="$hint" + :corner-hint="$cornerHint" + x-on:keydown.up.prevent="plus" + x-on:keydown.down.prevent="minus" + > + +
+ +
+
+ + +
+ +
+
+
+
diff --git a/resources/views/vendor/wireui/components/inputs/password.blade.php b/resources/views/vendor/wireui/components/inputs/password.blade.php new file mode 100644 index 00000000..febdf48e --- /dev/null +++ b/resources/views/vendor/wireui/components/inputs/password.blade.php @@ -0,0 +1,34 @@ +
only('wire:key') }}> + whereDoesntStartWith('wire:key') }} + :borderless="$borderless" + :shadowless="$shadowless" + :label="$label" + :hint="$hint" + :corner-hint="$cornerHint" + :icon="$icon" + :prefix="$prefix" + :prepend="$prepend" + x-bind:type="type" + > + +
+
+ + +
+
+
+
+
diff --git a/resources/views/vendor/wireui/components/label.blade.php b/resources/views/vendor/wireui/components/label.blade.php new file mode 100644 index 00000000..a1cca836 --- /dev/null +++ b/resources/views/vendor/wireui/components/label.blade.php @@ -0,0 +1,8 @@ + diff --git a/resources/views/vendor/wireui/components/modal-card.blade.php b/resources/views/vendor/wireui/components/modal-card.blade.php new file mode 100644 index 00000000..b222f82a --- /dev/null +++ b/resources/views/vendor/wireui/components/modal-card.blade.php @@ -0,0 +1,44 @@ + + + @if ($header) + + {{ $header }} + + @elseif(!$hideClose) + + + + @endif + + {{ $slot }} + + @isset($footer) + + {{ $footer }} + + @endisset + + diff --git a/resources/views/vendor/wireui/components/modal.blade.php b/resources/views/vendor/wireui/components/modal.blade.php new file mode 100644 index 00000000..ed2f9de6 --- /dev/null +++ b/resources/views/vendor/wireui/components/modal.blade.php @@ -0,0 +1,47 @@ +@php($name = $name ?? $attributes->wire('model')->value()) + +
whereDoesntStartWith('wire:model') + ->whereStartsWith(['x-on:', '@', 'wire:']) }} + style="display: none" + x-cloak + x-show="show" + wireui-modal> +
(bool) $blur + ]) + x-show="show" + x-on:click="close" + x-transition:enter="ease-out duration-300" + x-transition:enter-start="opacity-0" + x-transition:enter-end="opacity-100" + x-transition:leave="ease-in duration-200" + x-transition:leave-start="opacity-100" + x-transition:leave-end="opacity-0"> +
+ +
+ {{ $slot }} +
+
diff --git a/resources/views/vendor/wireui/components/native-select.blade.php b/resources/views/vendor/wireui/components/native-select.blade.php new file mode 100644 index 00000000..5670631d --- /dev/null +++ b/resources/views/vendor/wireui/components/native-select.blade.php @@ -0,0 +1,49 @@ +
+ @if ($label) + + @endif + + + + @if ($hint) + + @endif + + @if ($name) + + @endif +
diff --git a/resources/views/vendor/wireui/components/notifications.blade.php b/resources/views/vendor/wireui/components/notifications.blade.php new file mode 100644 index 00000000..9fd3b0da --- /dev/null +++ b/resources/views/vendor/wireui/components/notifications.blade.php @@ -0,0 +1,155 @@ +
+
+ +
+
diff --git a/resources/views/vendor/wireui/components/parts/popover.blade.php b/resources/views/vendor/wireui/components/parts/popover.blade.php new file mode 100644 index 00000000..b4c557f0 --- /dev/null +++ b/resources/views/vendor/wireui/components/parts/popover.blade.php @@ -0,0 +1,37 @@ +@props(['margin' => false, 'rootClass' => null]) + + diff --git a/resources/views/vendor/wireui/components/radio.blade.php b/resources/views/vendor/wireui/components/radio.blade.php new file mode 100644 index 00000000..866331ca --- /dev/null +++ b/resources/views/vendor/wireui/components/radio.blade.php @@ -0,0 +1,50 @@ +
+ + + @if ($name) + + @endif +
diff --git a/resources/views/vendor/wireui/components/select.blade.php b/resources/views/vendor/wireui/components/select.blade.php new file mode 100644 index 00000000..c9d1b996 --- /dev/null +++ b/resources/views/vendor/wireui/components/select.blade.php @@ -0,0 +1,246 @@ +
only(['class', 'wire:key'])->class('relative') }} + x-data="wireui_select({ + @if ($attributes->wire('model')->value()) + wireModel: @entangle($attributes->wire('model')), + @endif + })" + x-props="{ + asyncData: @toJs($asyncData), + optionValue: @toJs($optionValue), + optionLabel: @toJs($optionLabel), + optionDescription: @toJs($optionDescription), + hasSlot: @boolean($slot->isNotEmpty()), + multiselect: @boolean($multiselect), + searchable: @boolean($searchable), + clearable: @boolean($clearable), + readonly: @boolean($readonly || $disabled), + placeholder: @toJs($placeholder), + template: @toJs($template), + }"> + + + + @if (app()->runningUnitTests()) +
+ {!! json_encode($optionsToArray()) !!} +
+ @endif + +
+ @if ($label) + + @endif + + except(['class']) + ->class(['pl-8' => $icon]) + ->whereDoesntStartWith(['wire:model', 'type', 'wire:key']) + }} + > + +
+ + + +
+
+ + +
+ @if ($clearable && !$readonly && !$disabled) + + @endif + + +
+
+
+ + @if ($hint) + + @endif +
+ + + + +
+
+
+
+
+ + @isset ($beforeOptions) +
attributes }}> + {{ $beforeOptions }} +
+ @endisset + +
    + +
+ + @unless ($hideEmptyMessage) +
+ {{ $emptyMessage ?? __('wireui::messages.empty_options') }} +
+ @endunless + + @isset ($afterOptions) +
attributes }}> + {{ $afterOptions }} +
+ @endisset +
+
+
diff --git a/resources/views/vendor/wireui/components/select/option.blade.php b/resources/views/vendor/wireui/components/select/option.blade.php new file mode 100644 index 00000000..38e48526 --- /dev/null +++ b/resources/views/vendor/wireui/components/select/option.blade.php @@ -0,0 +1,12 @@ +
+ @toJs($toArray()) + @if (app()->runningUnitTests()) +
+ {!! json_encode($toArray()) !!} +
+ @endif + + @if ($slot->isNotEmpty()) + {{ $slot }} + @endif +
diff --git a/resources/views/vendor/wireui/components/select/user-option.blade.php b/resources/views/vendor/wireui/components/select/user-option.blade.php new file mode 100644 index 00000000..23e64e52 --- /dev/null +++ b/resources/views/vendor/wireui/components/select/user-option.blade.php @@ -0,0 +1,21 @@ + +
+ + + (bool) $description])> + {{ $label }} + + @if ($description) +
{{ $description }}
+ @endif +
+
+
diff --git a/resources/views/vendor/wireui/components/textarea.blade.php b/resources/views/vendor/wireui/components/textarea.blade.php new file mode 100644 index 00000000..77f9c25f --- /dev/null +++ b/resources/views/vendor/wireui/components/textarea.blade.php @@ -0,0 +1,94 @@ +@php + $hasError = false; + if ($name) { $hasError = $errors->has($name); } +@endphp + +
+ @if ($label || $cornerHint) +
+ @if ($label) + + @endif + + @if ($cornerHint) + + @endif +
+ @endif + +
+ @if ($prefix || $icon) +
+ @if ($icon) + + @elseif($prefix) + + {{ $prefix }} + + @endif +
+ @elseif($prepend) + {{ $prepend }} + @endif + + + + @if ($suffix || $rightIcon || ($hasError && !$append)) +
+ @if ($rightIcon) + + @elseif($suffix) + + {{ $suffix }} + + @elseif($hasError) + + @endif +
+ @elseif($append) + {{ $append }} + @endif +
+ + @if (!$hasError && $hint) + + @endif + + @if ($name) + + @endif +
diff --git a/resources/views/vendor/wireui/components/time-picker.blade.php b/resources/views/vendor/wireui/components/time-picker.blade.php new file mode 100644 index 00000000..d807d961 --- /dev/null +++ b/resources/views/vendor/wireui/components/time-picker.blade.php @@ -0,0 +1,109 @@ +
only('wire:key') + ->class('w-full relative') + ->merge(['wire:key' => "timepicker::{$name}"]) }} +> +
+ whereDoesntStartWith(['wire:model', 'x-model', 'wire:key']) }} + :borderless="$borderless" + :shadowless="$shadowless" + :label="$label" + :hint="$hint" + :corner-hint="$cornerHint" + :icon="$icon" + :prefix="$prefix" + :prepend="$prepend" + x-model="input" + x-on:input.debounce.150ms="onInput($event.target.value)" + x-on:blur="emitInput"> + +
+
$name && $errors->has($name), + 'text-secondary-400' => $name && $errors->has($name), + ])> + + + +
+
+
+
+
+ + + + +
    + +
+
+
diff --git a/resources/views/vendor/wireui/components/toggle.blade.php b/resources/views/vendor/wireui/components/toggle.blade.php new file mode 100644 index 00000000..7e231585 --- /dev/null +++ b/resources/views/vendor/wireui/components/toggle.blade.php @@ -0,0 +1,42 @@ +
+
+ @if ($leftLabel) + + @endif + + + + @if ($label) + + @endif +
+ + @if ($name) + + @endif +
diff --git a/routes/web.php b/routes/web.php index cda360ea..9673d798 100644 --- a/routes/web.php +++ b/routes/web.php @@ -5,6 +5,10 @@ use Illuminate\Http\Request; use Illuminate\Support\Facades\Response; use Laravel\Socialite\Facades\Socialite; +Route::middleware([]) + ->get('/webln', \App\Http\Livewire\Test\WebLN::class) + ->name('webln'); + Route::middleware([]) ->get('/bsc', \App\Http\Livewire\Specials\BalticSeaCircle::class) ->name('specials.bsc'); diff --git a/yarn.lock b/yarn.lock index ca06d50e..2622e709 100644 --- a/yarn.lock +++ b/yarn.lock @@ -692,6 +692,15 @@ __metadata: languageName: node linkType: hard +"@types/chrome@npm:^0.0.74": + version: 0.0.74 + resolution: "@types/chrome@npm:0.0.74" + dependencies: + "@types/filesystem": "*" + checksum: 3c6659b9712200d7f7692b41250ae1581945ad9034ddb5875944ede59125aaaef918049934d534b0706a2632d3e79861e8861ba1f49a0397a2805b373b2a1232 + languageName: node + linkType: hard + "@types/concat-stream@npm:^1.6.0": version: 1.6.1 resolution: "@types/concat-stream@npm:1.6.1" @@ -729,6 +738,22 @@ __metadata: languageName: node linkType: hard +"@types/filesystem@npm:*": + version: 0.0.36 + resolution: "@types/filesystem@npm:0.0.36" + dependencies: + "@types/filewriter": "*" + checksum: fad9f6b291598e65a0c5e73e685977b2c86c9bdb1ede5ce29eb35f196bbdf8d668a32bd4361624391ae1eb699362daa13442b75177dd73c6b300967fdd1ed765 + languageName: node + linkType: hard + +"@types/filewriter@npm:*": + version: 0.0.33 + resolution: "@types/filewriter@npm:0.0.33" + checksum: 56ba7f0d3c2dafbb899e7f5a9574df41d2f07494040aa09f9fd51c7004c0b255c36c554333c380b23625afb50e50cf1d13f5925d956a627d4ee6e3fbe8f3176b + languageName: node + linkType: hard + "@types/form-data@npm:0.0.33": version: 0.0.33 resolution: "@types/form-data@npm:0.0.33" @@ -4935,6 +4960,7 @@ __metadata: tailwindcss: ^3.1.0 vite: ^4.1.1 vite-plugin-static-copy: ^0.16.0 + webln: ^0.3.2 languageName: unknown linkType: soft @@ -5867,6 +5893,15 @@ __metadata: languageName: node linkType: hard +"webln@npm:^0.3.2": + version: 0.3.2 + resolution: "webln@npm:0.3.2" + dependencies: + "@types/chrome": ^0.0.74 + checksum: 8aa2f773abb33baac8be824aeae2048fe04952bda98b8a21fc30b35ac8516cb6c85e4824390b199d467964b7df6bf34bbdc244443e7f0a3deaa433abed3f5dd0 + languageName: node + linkType: hard + "websocket-polyfill@npm:^0.0.3": version: 0.0.3 resolution: "websocket-polyfill@npm:0.0.3"