From: Vincent Vanwaelscappel Date: Thu, 14 Mar 2024 16:57:47 +0000 (+0100) Subject: wip #6775 @0.25 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=826a4fda70ea685f9c62cb69475db3261f8a1c8a;p=fluidbook-toolbox.git wip #6775 @0.25 --- diff --git a/app/Models/ToolWebflow.php b/app/Models/ToolWebflow.php index 60160d473..9df3b2476 100644 --- a/app/Models/ToolWebflow.php +++ b/app/Models/ToolWebflow.php @@ -2,6 +2,9 @@ namespace App\Models; +use App\Fields\Webflow\WebflowImages; +use App\Fields\Webflow\WebflowSEO; +use App\Fields\Webflow\WebflowTexts; use App\Http\Controllers\Admin\Operations\Tools\StaticSiteUploader; use App\Http\Controllers\Admin\Operations\Tools\WebflowOperation; use App\Jobs\WebflowPublish; @@ -41,7 +44,7 @@ class ToolWebflow extends ToolboxModel $this->addField('name', Text::class, __('Projet'), ['column' => true, 'tab' => __('Paramètres')]); $this->addField('webflow', Text::class, __('URL du projet webflow'), ['prefix' => 'https://', 'suffix' => '.webflow.io', 'column' => true, 'hint' => __('ex : :url', ['url' => 'https://projet.webflow.io']), 'tab' => __('Paramètres')]); $this->addField('webflow_api_token', Text::class, __('Token de l\'API Webflow'), ['tab' => __('Paramètres')]); - $this->addField('webflow_api_login', LinkButton::class, __('Récupérer un token'), ['tab' => __('Paramètres'), 'value' => 'https://webflow.com/oauth/authorize?response_type=code&client_id=' . env('WEBFLOW_CLIENT_ID') . '&state=$id&scope=assets%3Aread%20assets%3Awrite%20authorized_user%3Aread%20cms%3Aread%20cms%3Awrite%20custom_code%3Aread%20custom_code%3Awrite%20forms%3Aread%20forms%3Awrite%20pages%3Aread%20pages%3Awrite%20sites%3Aread%20sites%3Awrite']); + $this->addField('webflow_api_login', LinkButton::class, __('Récupérer un token'), ['when' => ["webflow_api_token" => ''], 'tab' => __('Paramètres'), 'value' => 'https://webflow.com/oauth/authorize?response_type=code&client_id=' . env('WEBFLOW_CLIENT_ID') . '&state=$id&scope=assets%3Aread%20assets%3Awrite%20authorized_user%3Aread%20cms%3Aread%20cms%3Awrite%20custom_code%3Aread%20custom_code%3Awrite%20forms%3Aread%20forms%3Awrite%20pages%3Aread%20pages%3Awrite%20sites%3Aread%20sites%3Awrite']); $this->addField('domains', Textarea::class, __('Domaines à télécharger'), ['tab' => __('Paramètres')]); $this->addField('locales', Table::class, __('Langues'), ['columns' => ['locale' => __('Code langue'), 'url' => __('URL')], 'tab' => __('Paramètres')]); $this->addField('slack', Text::class, __('Notification slack'), ['tab' => __('Paramètres')]); @@ -53,9 +56,9 @@ class ToolWebflow extends ToolboxModel $this->addField('upload', SelectFromArray::class, __('Uploader sur'), ['options' => $sites, 'tab' => __('Paramètres')]); $this->addField('js', Code::class, __('Javascript complémentaire'), ['language' => 'js', 'tab' => __('Code'), 'hint' => __('Code ajouté à toutes les pages')]); $this->addField('css', Code::class, __('CSS complémentaire'), ['language' => 'css', 'tab' => __('Code'), 'hint' => __('Code ajouté à toutes les pages')]); - $this->addField('texts', Textarea::class, '', ['tab' => __('Textes')]); - $this->addField('images', Textarea::class, '', ['tab' => __('Images')]); - $this->addField('seo', Textarea::class, '', ['tab' => __('SEO')]); + $this->addField('texts', WebflowTexts::class, '', ['tab' => __('Textes')]); + $this->addField('images', WebflowImages::class, '', ['tab' => __('Images')]); + $this->addField('seo', WebflowSEO::class, '', ['tab' => __('SEO')]); } protected function _parsePages() diff --git a/composer.lock b/composer.lock index f7d66b4fe..886c0d346 100644 --- a/composer.lock +++ b/composer.lock @@ -548,23 +548,23 @@ }, { "name": "barryvdh/laravel-debugbar", - "version": "v3.10.6", + "version": "v3.12.2", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "1fcb37307ebb32207dce16fa160a92b14d8b671f" + "reference": "43555503052443964ce2c1c1f3b0378e58219eb8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/1fcb37307ebb32207dce16fa160a92b14d8b671f", - "reference": "1fcb37307ebb32207dce16fa160a92b14d8b671f", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/43555503052443964ce2c1c1f3b0378e58219eb8", + "reference": "43555503052443964ce2c1c1f3b0378e58219eb8", "shasum": "" }, "require": { "illuminate/routing": "^9|^10|^11", "illuminate/session": "^9|^10|^11", "illuminate/support": "^9|^10|^11", - "maximebf/debugbar": "~1.20.1", + "maximebf/debugbar": "~1.21.0", "php": "^8.0", "symfony/finder": "^6|^7" }, @@ -616,7 +616,7 @@ ], "support": { "issues": "https://github.com/barryvdh/laravel-debugbar/issues", - "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.10.6" + "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.12.2" }, "funding": [ { @@ -628,7 +628,7 @@ "type": "github" } ], - "time": "2024-03-01T14:41:13+00:00" + "time": "2024-03-13T09:50:34+00:00" }, { "name": "brick/math", @@ -1024,12 +1024,12 @@ "source": { "type": "git", "url": "https://github.com/chillerlan/php-qrcode.git", - "reference": "900c8aea4f233cd8f3d3047de8978b987aa0a317" + "reference": "b57d1703f6b1becb418d00a21ee327f028d9dd94" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/chillerlan/php-qrcode/zipball/900c8aea4f233cd8f3d3047de8978b987aa0a317", - "reference": "900c8aea4f233cd8f3d3047de8978b987aa0a317", + "url": "https://api.github.com/repos/chillerlan/php-qrcode/zipball/b57d1703f6b1becb418d00a21ee327f028d9dd94", + "reference": "b57d1703f6b1becb418d00a21ee327f028d9dd94", "shasum": "" }, "require": { @@ -1043,7 +1043,7 @@ "phpmd/phpmd": "^2.15", "phpunit/phpunit": "^10.5", "setasign/fpdf": "^1.8.2", - "squizlabs/php_codesniffer": "^3.8" + "squizlabs/php_codesniffer": "^3.9" }, "suggest": { "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.", @@ -1111,7 +1111,7 @@ "type": "ko_fi" } ], - "time": "2024-03-02T16:33:34+00:00" + "time": "2024-03-08T19:57:55+00:00" }, { "name": "chillerlan/php-settings-container", @@ -1588,13 +1588,13 @@ "source": { "type": "git", "url": "git://git.cubedesigners.com/cubedesigners_userdatabase.git", - "reference": "dfde00f381382903ff19930fb712c8da0abed480" + "reference": "152a2ff4c812d2e504a8fb13a393d068a94ff40b" }, "dist": { "type": "tar", - "url": "https://composer.cubedesigners.com/dist/cubedesigners/userdatabase/cubedesigners-userdatabase-dev-master-e9a29b.tar", - "reference": "dfde00f381382903ff19930fb712c8da0abed480", - "shasum": "ba25f4010fedd5b4a537cbbbadf7272ff86780f6" + "url": "https://composer.cubedesigners.com/dist/cubedesigners/userdatabase/cubedesigners-userdatabase-dev-master-d44b4b.tar", + "reference": "152a2ff4c812d2e504a8fb13a393d068a94ff40b", + "shasum": "124dd7033bfcb178a0962c335f2060b0b0157f82" }, "require": { "cubist/cms-back": "dev-master", @@ -1627,7 +1627,7 @@ } ], "description": "Cubedesigners common users database", - "time": "2024-02-26T09:07:23+00:00" + "time": "2024-03-06T16:54:54+00:00" }, { "name": "cubist/azuretts", @@ -1678,13 +1678,13 @@ "source": { "type": "git", "url": "git://git.cubedesigners.com/cubist_cms-back.git", - "reference": "7cbf213aaf00b4e16eccb46fb0d61d2f2153375d" + "reference": "88d5dc958d1d2414134d493f638963af0d9314ee" }, "dist": { "type": "tar", - "url": "https://composer.cubedesigners.com/dist/cubist/cms-back/cubist-cms-back-dev-master-daa92b.tar", - "reference": "7cbf213aaf00b4e16eccb46fb0d61d2f2153375d", - "shasum": "362bef027d0e90b67a1e110b207e86376e5f20cf" + "url": "https://composer.cubedesigners.com/dist/cubist/cms-back/cubist-cms-back-dev-master-be1c31.tar", + "reference": "88d5dc958d1d2414134d493f638963af0d9314ee", + "shasum": "5a9369ae9cf24a349269ffe9a56e6cb7f72ed19e" }, "require": { "backpack/backupmanager": "^v3.0.9", @@ -1763,7 +1763,7 @@ } ], "description": "Cubist Backpack extension", - "time": "2024-03-06T11:00:18+00:00" + "time": "2024-03-14T08:46:52+00:00" }, { "name": "cubist/cms-front", @@ -2190,13 +2190,13 @@ "source": { "type": "git", "url": "git://git.cubedesigners.com/cubist_util.git", - "reference": "0d3f032fdc061e911a820bc5d243fd66c1906aa7" + "reference": "bb5eda4abfafcb8d6c1443eaff46f57e1a7c4f51" }, "dist": { "type": "tar", - "url": "https://composer.cubedesigners.com/dist/cubist/util/cubist-util-dev-master-db9e57.tar", - "reference": "0d3f032fdc061e911a820bc5d243fd66c1906aa7", - "shasum": "0dd86bdd20c659013865038d8b15a1753ed51afd" + "url": "https://composer.cubedesigners.com/dist/cubist/util/cubist-util-dev-master-0b82e9.tar", + "reference": "bb5eda4abfafcb8d6c1443eaff46f57e1a7c4f51", + "shasum": "0f040421f46b1ce58fc91c69b64a2e64f9149f2b" }, "require": { "cubist/net": "dev-master", @@ -2230,7 +2230,7 @@ } ], "description": "Utilities class", - "time": "2024-03-04T13:26:10+00:00" + "time": "2024-03-06T15:47:24+00:00" }, { "name": "cviebrock/eloquent-sluggable", @@ -3177,16 +3177,16 @@ }, { "name": "dragon-code/contracts", - "version": "2.22.0", + "version": "2.23.0", "source": { "type": "git", "url": "https://github.com/TheDragonCode/contracts.git", - "reference": "5c4a9653dd5985151adcb56790bd56645edddae3" + "reference": "44dbad923f152e0dc2699fbac2d33b65dd6a8f7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TheDragonCode/contracts/zipball/5c4a9653dd5985151adcb56790bd56645edddae3", - "reference": "5c4a9653dd5985151adcb56790bd56645edddae3", + "url": "https://api.github.com/repos/TheDragonCode/contracts/zipball/44dbad923f152e0dc2699fbac2d33b65dd6a8f7d", + "reference": "44dbad923f152e0dc2699fbac2d33b65dd6a8f7d", "shasum": "" }, "require": { @@ -3199,7 +3199,7 @@ "andrey-helldar/contracts": "*" }, "require-dev": { - "illuminate/database": "^10.0", + "illuminate/database": "^10.0 || ^11.0", "phpdocumentor/reflection-docblock": "^5.0" }, "type": "library", @@ -3216,7 +3216,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", @@ -3241,7 +3241,7 @@ "type": "yoomoney" } ], - "time": "2023-12-09T12:44:43+00:00" + "time": "2024-03-11T20:15:12+00:00" }, { "name": "dragon-code/pretty-array", @@ -3322,16 +3322,16 @@ }, { "name": "dragon-code/support", - "version": "6.12.0", + "version": "6.13.0", "source": { "type": "git", "url": "https://github.com/TheDragonCode/support.git", - "reference": "caee4d59725b1331c9970f57b4f047eab40d8fa0" + "reference": "a6f0468e32581efbccb23190b6d5c880cc519747" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TheDragonCode/support/zipball/caee4d59725b1331c9970f57b4f047eab40d8fa0", - "reference": "caee4d59725b1331c9970f57b4f047eab40d8fa0", + "url": "https://api.github.com/repos/TheDragonCode/support/zipball/a6f0468e32581efbccb23190b6d5c880cc519747", + "reference": "a6f0468e32581efbccb23190b6d5c880cc519747", "shasum": "" }, "require": { @@ -3341,7 +3341,7 @@ "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" @@ -3350,8 +3350,8 @@ "andrey-helldar/support": "*" }, "require-dev": { - "illuminate/contracts": "^9.0 || ^10.0", - "phpunit/phpunit": "^9.6", + "illuminate/contracts": "^9.0 || ^10.0 || ^11.0", + "phpunit/phpunit": "^9.6 || ^11.0", "symfony/var-dumper": "^6.0 || ^7.0" }, "suggest": { @@ -3382,7 +3382,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.", @@ -3417,7 +3417,7 @@ "type": "yoomoney" } ], - "time": "2023-12-09T12:52:29+00:00" + "time": "2024-03-12T20:45:00+00:00" }, { "name": "dragonmantank/cron-expression", @@ -3834,13 +3834,13 @@ "source": { "type": "git", "url": "git://git.cubedesigners.com/fluidbook_tools.git", - "reference": "e293bbd9e697e02b1028a462ee9236ecc102a182" + "reference": "cdb9b727b6b3e683c51c1f681d168349ef58b776" }, "dist": { "type": "tar", - "url": "https://composer.cubedesigners.com/dist/fluidbook/tools/fluidbook-tools-dev-master-e397a7.tar", - "reference": "e293bbd9e697e02b1028a462ee9236ecc102a182", - "shasum": "b6d50ebf6985ea8b75451afbef35130cf1b10b06" + "url": "https://composer.cubedesigners.com/dist/fluidbook/tools/fluidbook-tools-dev-master-acf838.tar", + "reference": "cdb9b727b6b3e683c51c1f681d168349ef58b776", + "shasum": "157379470a3c458bb77b089682a4c121e6748860" }, "require": { "barryvdh/laravel-debugbar": "*", @@ -3876,7 +3876,7 @@ } ], "description": "Fluidbook Tools", - "time": "2024-03-05T15:30:32+00:00" + "time": "2024-03-13T17:00:21+00:00" }, { "name": "fruitcake/php-cors", @@ -4638,7 +4638,7 @@ }, { "name": "jane-php/json-schema-runtime", - "version": "v7.6.0", + "version": "v7.6.1", "source": { "type": "git", "url": "https://github.com/janephp/json-schema-runtime.git", @@ -4694,13 +4694,13 @@ ], "description": "Jane runtime Library", "support": { - "source": "https://github.com/janephp/json-schema-runtime/tree/v7.6.0" + "source": "https://github.com/janephp/json-schema-runtime/tree/v7.6.1" }, "time": "2024-01-31T09:18:22+00:00" }, { "name": "jane-php/open-api-runtime", - "version": "v7.6.0", + "version": "v7.6.1", "source": { "type": "git", "url": "https://github.com/janephp/open-api-runtime.git", @@ -4757,7 +4757,7 @@ ], "description": "Jane OpenAPI Runtime Library, dependencies and utility class for a library generated by jane/openapi", "support": { - "source": "https://github.com/janephp/open-api-runtime/tree/v7.6.0" + "source": "https://github.com/janephp/open-api-runtime/tree/v7.6.1" }, "time": "2024-01-31T09:32:00+00:00" }, @@ -5118,16 +5118,16 @@ }, { "name": "laravel/framework", - "version": "v10.47.0", + "version": "v10.48.2", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "fce29b8de62733cdecbe12e3bae801f83fff2ea4" + "reference": "32a8bb151d748b579c3794dea53b56bd40dfbbd3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/fce29b8de62733cdecbe12e3bae801f83fff2ea4", - "reference": "fce29b8de62733cdecbe12e3bae801f83fff2ea4", + "url": "https://api.github.com/repos/laravel/framework/zipball/32a8bb151d748b579c3794dea53b56bd40dfbbd3", + "reference": "32a8bb151d748b579c3794dea53b56bd40dfbbd3", "shasum": "" }, "require": { @@ -5175,6 +5175,7 @@ "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" }, @@ -5320,7 +5321,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-03-05T15:18:36+00:00" + "time": "2024-03-12T16:35:43+00:00" }, { "name": "laravel/prompts", @@ -5774,16 +5775,16 @@ }, { "name": "league/flysystem", - "version": "3.24.0", + "version": "3.25.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "b25a361508c407563b34fac6f64a8a17a8819675" + "reference": "4c44347133618cccd9b3df1729647a1577b4ad99" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/b25a361508c407563b34fac6f64a8a17a8819675", - "reference": "b25a361508c407563b34fac6f64a8a17a8819675", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/4c44347133618cccd9b3df1729647a1577b4ad99", + "reference": "4c44347133618cccd9b3df1729647a1577b4ad99", "shasum": "" }, "require": { @@ -5811,7 +5812,7 @@ "friendsofphp/php-cs-fixer": "^3.5", "google/cloud-storage": "^1.23", "microsoft/azure-storage-blob": "^1.1", - "phpseclib/phpseclib": "^3.0.34", + "phpseclib/phpseclib": "^3.0.36", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5.11|^10.0", "sabre/dav": "^4.6.0" @@ -5848,7 +5849,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.24.0" + "source": "https://github.com/thephpleague/flysystem/tree/3.25.0" }, "funding": [ { @@ -5860,7 +5861,7 @@ "type": "github" } ], - "time": "2024-02-04T12:10:17+00:00" + "time": "2024-03-09T17:06:45+00:00" }, { "name": "league/flysystem-local", @@ -6468,16 +6469,16 @@ }, { "name": "maximebf/debugbar", - "version": "v1.20.2", + "version": "v1.21.3", "source": { "type": "git", "url": "https://github.com/maximebf/php-debugbar.git", - "reference": "484625c23a4fa4f303617f29fcacd42951c9c01d" + "reference": "0b407703b08ea0cf6ebc61e267cc96ff7000911b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/484625c23a4fa4f303617f29fcacd42951c9c01d", - "reference": "484625c23a4fa4f303617f29fcacd42951c9c01d", + "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/0b407703b08ea0cf6ebc61e267cc96ff7000911b", + "reference": "0b407703b08ea0cf6ebc61e267cc96ff7000911b", "shasum": "" }, "require": { @@ -6497,7 +6498,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.20-dev" + "dev-master": "1.21-dev" } }, "autoload": { @@ -6528,9 +6529,9 @@ ], "support": { "issues": "https://github.com/maximebf/php-debugbar/issues", - "source": "https://github.com/maximebf/php-debugbar/tree/v1.20.2" + "source": "https://github.com/maximebf/php-debugbar/tree/v1.21.3" }, - "time": "2024-02-15T10:49:09+00:00" + "time": "2024-03-12T14:23:07+00:00" }, { "name": "mews/purifier", @@ -7898,16 +7899,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": { @@ -7961,9 +7962,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/multipart-stream-builder", @@ -8311,26 +8312,26 @@ }, { "name": "prologue/alerts", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/prologuephp/alerts.git", - "reference": "33e86d1f64dae7a8d6e29e7d6c282abc77a89b97" + "reference": "00c4662ce50a633c39d3424698baa5cbfb880da3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/prologuephp/alerts/zipball/33e86d1f64dae7a8d6e29e7d6c282abc77a89b97", - "reference": "33e86d1f64dae7a8d6e29e7d6c282abc77a89b97", + "url": "https://api.github.com/repos/prologuephp/alerts/zipball/00c4662ce50a633c39d3424698baa5cbfb880da3", + "reference": "00c4662ce50a633c39d3424698baa5cbfb880da3", "shasum": "" }, "require": { - "illuminate/config": "~9|^10", - "illuminate/session": "~9|^10", - "illuminate/support": "~9|^10" + "illuminate/config": "~9|^10|^11.0", + "illuminate/session": "~9|^10|^11.0", + "illuminate/support": "~9|^10|^11.0" }, "require-dev": { "mockery/mockery": "^1.0", - "phpunit/phpunit": "^9" + "phpunit/phpunit": "^9|^10.5" }, "type": "library", "extra": { @@ -8374,9 +8375,9 @@ ], "support": { "issues": "https://github.com/prologuephp/alerts/issues", - "source": "https://github.com/prologuephp/alerts/tree/1.1.0" + "source": "https://github.com/prologuephp/alerts/tree/1.2.0" }, - "time": "2023-02-01T06:54:14+00:00" + "time": "2024-03-12T11:23:19+00:00" }, { "name": "psr/cache", @@ -9138,25 +9139,25 @@ }, { "name": "rickselby/laravel-gate-cache", - "version": "v3.7.0", + "version": "3.8.0", "source": { "type": "git", "url": "https://github.com/rickselby/laravel-gate-cache.git", - "reference": "e608191112acedf163308be7eabf2c784869e799" + "reference": "d19bc9aaaffa5853c531e76bc19330dca4a5c606" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/rickselby/laravel-gate-cache/zipball/e608191112acedf163308be7eabf2c784869e799", - "reference": "e608191112acedf163308be7eabf2c784869e799", + "url": "https://api.github.com/repos/rickselby/laravel-gate-cache/zipball/d19bc9aaaffa5853c531e76bc19330dca4a5c606", + "reference": "d19bc9aaaffa5853c531e76bc19330dca4a5c606", "shasum": "" }, "require": { - "illuminate/auth": "8.*|9.*|10.*", - "illuminate/contracts": "8.*|9.*|10.*" + "illuminate/auth": "10.*|11.*", + "illuminate/contracts": "10.*|11.*" }, "require-dev": { - "graham-campbell/testbench": "^6.0", - "phpunit/phpunit": "^9.0" + "graham-campbell/testbench": "^6.1", + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { @@ -9184,9 +9185,9 @@ "description": "Add a per-request caching layer to Laravel's Gate", "support": { "issues": "https://github.com/rickselby/laravel-gate-cache/issues", - "source": "https://github.com/rickselby/laravel-gate-cache/tree/v3.7.0" + "source": "https://github.com/rickselby/laravel-gate-cache/tree/3.8.0" }, - "time": "2023-11-30T20:19:01+00:00" + "time": "2024-03-14T12:27:24+00:00" }, { "name": "rodneyrehm/plist", @@ -9794,16 +9795,16 @@ }, { "name": "spatie/laravel-honeypot", - "version": "4.5.0", + "version": "4.5.1", "source": { "type": "git", "url": "https://github.com/spatie/laravel-honeypot.git", - "reference": "c5f5b5bdb5765d6b97ac9cc60a2b78546b5fa37b" + "reference": "eaffd65f20faaa47cc87f9348e5920bc47ed7c42" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-honeypot/zipball/c5f5b5bdb5765d6b97ac9cc60a2b78546b5fa37b", - "reference": "c5f5b5bdb5765d6b97ac9cc60a2b78546b5fa37b", + "url": "https://api.github.com/repos/spatie/laravel-honeypot/zipball/eaffd65f20faaa47cc87f9348e5920bc47ed7c42", + "reference": "eaffd65f20faaa47cc87f9348e5920bc47ed7c42", "shasum": "" }, "require": { @@ -9812,7 +9813,7 @@ "illuminate/http": "^8.0|^9.0|^10.0|^11.0", "illuminate/support": "^8.0|^9.0|^10.0|^11.0", "illuminate/validation": "^8.0|^9.0|^10.0|^11.0", - "nesbot/carbon": "^2.0", + "nesbot/carbon": "^2.0|^3.0", "php": "^8.0", "spatie/laravel-package-tools": "^1.9", "symfony/http-foundation": "^5.1.2|^6.0|^7.0" @@ -9858,7 +9859,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-honeypot/tree/4.5.0" + "source": "https://github.com/spatie/laravel-honeypot/tree/4.5.1" }, "funding": [ { @@ -9866,7 +9867,7 @@ "type": "custom" } ], - "time": "2024-02-29T08:20:51+00:00" + "time": "2024-03-14T12:57:40+00:00" }, { "name": "spatie/laravel-medialibrary", @@ -9978,16 +9979,16 @@ }, { "name": "spatie/laravel-package-tools", - "version": "1.16.2", + "version": "1.16.3", "source": { "type": "git", "url": "https://github.com/spatie/laravel-package-tools.git", - "reference": "e62eeb1fe8a8a0b2e83227a6c279c8c59f7d3a15" + "reference": "59db18c2e20d49a0b6d447bb1c654f6c123beb9e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/e62eeb1fe8a8a0b2e83227a6c279c8c59f7d3a15", - "reference": "e62eeb1fe8a8a0b2e83227a6c279c8c59f7d3a15", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/59db18c2e20d49a0b6d447bb1c654f6c123beb9e", + "reference": "59db18c2e20d49a0b6d447bb1c654f6c123beb9e", "shasum": "" }, "require": { @@ -10026,7 +10027,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-package-tools/issues", - "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.2" + "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.3" }, "funding": [ { @@ -10034,7 +10035,7 @@ "type": "github" } ], - "time": "2024-01-11T08:43:00+00:00" + "time": "2024-03-07T07:35:57+00:00" }, { "name": "spatie/laravel-permission", @@ -10276,16 +10277,16 @@ }, { "name": "spatie/pdf-to-image", - "version": "2.2.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/spatie/pdf-to-image.git", - "reference": "9b8d5bae5b77f6023e87b2401028e52b7addbd48" + "reference": "7c68cc95c0a5e63d712b705ff55459071c2a7b54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/pdf-to-image/zipball/9b8d5bae5b77f6023e87b2401028e52b7addbd48", - "reference": "9b8d5bae5b77f6023e87b2401028e52b7addbd48", + "url": "https://api.github.com/repos/spatie/pdf-to-image/zipball/7c68cc95c0a5e63d712b705ff55459071c2a7b54", + "reference": "7c68cc95c0a5e63d712b705ff55459071c2a7b54", "shasum": "" }, "require": { @@ -10324,7 +10325,7 @@ ], "support": { "issues": "https://github.com/spatie/pdf-to-image/issues", - "source": "https://github.com/spatie/pdf-to-image/tree/2.2.0" + "source": "https://github.com/spatie/pdf-to-image/tree/2.3.0" }, "funding": [ { @@ -10332,7 +10333,7 @@ "type": "github" } ], - "time": "2022-03-08T07:52:26+00:00" + "time": "2024-03-07T09:42:07+00:00" }, { "name": "spatie/temporary-directory", @@ -10573,16 +10574,16 @@ }, { "name": "swayok/alternative-laravel-cache", - "version": "6.1.14", + "version": "6.1.15", "source": { "type": "git", "url": "https://github.com/swayok/alternative-laravel-cache.git", - "reference": "56c441d9b243270d3f81d4c0bf8d907f509a74a4" + "reference": "ce462b3dda9a7312fabfd40e20973d18e79772a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swayok/alternative-laravel-cache/zipball/56c441d9b243270d3f81d4c0bf8d907f509a74a4", - "reference": "56c441d9b243270d3f81d4c0bf8d907f509a74a4", + "url": "https://api.github.com/repos/swayok/alternative-laravel-cache/zipball/ce462b3dda9a7312fabfd40e20973d18e79772a9", + "reference": "ce462b3dda9a7312fabfd40e20973d18e79772a9", "shasum": "" }, "require": { @@ -10595,7 +10596,7 @@ "cache/memcached-adapter": "^1.0", "cache/predis-adapter": "^1.0", "cache/redis-adapter": "^1.0", - "phpunit/phpunit": "^8.5", + "phpunit/phpunit": "^10.5", "swayok/cache-filesystem-adapter": "^1.0.0" }, "suggest": { @@ -10637,9 +10638,9 @@ ], "support": { "issues": "https://github.com/swayok/alternative-laravel-cache/issues", - "source": "https://github.com/swayok/alternative-laravel-cache/tree/6.1.14" + "source": "https://github.com/swayok/alternative-laravel-cache/tree/6.1.15" }, - "time": "2023-12-13T17:21:11+00:00" + "time": "2024-03-12T19:43:01+00:00" }, { "name": "symfony/cache", @@ -13897,25 +13898,25 @@ }, { "name": "venturecraft/revisionable", - "version": "1.40.0", + "version": "1.41.0", "source": { "type": "git", "url": "https://github.com/VentureCraft/revisionable.git", - "reference": "0533f5fa967dbb656b098dac123046fff5ecc69f" + "reference": "f2175b59041de6610d1586db186d0a0a782bd74e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/VentureCraft/revisionable/zipball/0533f5fa967dbb656b098dac123046fff5ecc69f", - "reference": "0533f5fa967dbb656b098dac123046fff5ecc69f", + "url": "https://api.github.com/repos/VentureCraft/revisionable/zipball/f2175b59041de6610d1586db186d0a0a782bd74e", + "reference": "f2175b59041de6610d1586db186d0a0a782bd74e", "shasum": "" }, "require": { - "illuminate/support": "~4.0|~5.0|~5.1|^6.0|^7.0|^8.0|^9.0|^10.0", - "laravel/framework": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "~4.0|~5.0|~5.1|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "laravel/framework": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "php": ">=5.4.0" }, "require-dev": { - "orchestra/testbench": "~3.0|^8.0" + "orchestra/testbench": "~3.0|^8.0|^9.0" }, "type": "library", "extra": { @@ -13957,7 +13958,7 @@ "issues": "https://github.com/VentureCraft/revisionable/issues", "source": "https://github.com/VentureCraft/revisionable" }, - "time": "2023-02-18T01:49:34+00:00" + "time": "2024-03-13T09:43:46+00:00" }, { "name": "vlucas/phpdotenv", @@ -14841,16 +14842,16 @@ }, { "name": "composer/pcre", - "version": "3.1.1", + "version": "3.1.2", "source": { "type": "git", "url": "https://github.com/composer/pcre.git", - "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9" + "reference": "4775f35b2d70865807c89d32c8e7385b86eb0ace" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/00104306927c7a0919b4ced2aaa6782c1e61a3c9", - "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9", + "url": "https://api.github.com/repos/composer/pcre/zipball/4775f35b2d70865807c89d32c8e7385b86eb0ace", + "reference": "4775f35b2d70865807c89d32c8e7385b86eb0ace", "shasum": "" }, "require": { @@ -14892,7 +14893,7 @@ ], "support": { "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.1.1" + "source": "https://github.com/composer/pcre/tree/3.1.2" }, "funding": [ { @@ -14908,7 +14909,7 @@ "type": "tidelift" } ], - "time": "2023-10-11T07:11:09+00:00" + "time": "2024-03-07T15:38:35+00:00" }, { "name": "doctrine/instantiator", @@ -15170,7 +15171,7 @@ }, { "name": "mockery/mockery", - "version": "1.6.7", + "version": "1.6.9", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", @@ -17035,16 +17036,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": { @@ -17056,7 +17057,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -17077,8 +17078,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": [ { @@ -17086,7 +17086,7 @@ "type": "github" } ], - "time": "2020-09-28T06:45:17+00:00" + "time": "2024-03-14T16:00:52+00:00" }, { "name": "sebastian/type", diff --git a/resources/views/fields/webflow/seo.blade.php b/resources/views/fields/webflow/seo.blade.php index e69de29bb..854492ad7 100644 --- a/resources/views/fields/webflow/seo.blade.php +++ b/resources/views/fields/webflow/seo.blade.php @@ -0,0 +1 @@ +seo :)