Update composer dependencies

This commit is contained in:
Jonny Barnes 2023-12-06 20:11:41 +00:00
parent 58c179bef2
commit 3c0c375fbb
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8
11 changed files with 127 additions and 122 deletions

View file

@ -18,7 +18,7 @@ class ArticlesController extends Controller
/**
* Show all articles (with pagination).
*/
public function index(int $year = null, int $month = null): View
public function index(?int $year = null, ?int $month = null): View
{
$articles = Article::where('published', '1')
->date($year, $month)

View file

@ -107,7 +107,7 @@ class Article extends Model
/**
* Scope a query to only include articles from a particular year/month.
*/
public function scopeDate(Builder $query, int $year = null, int $month = null): Builder
public function scopeDate(Builder $query, ?int $year = null, ?int $month = null): Builder
{
if ($year === null) {
return $query;

View file

@ -8,7 +8,7 @@ use App\Models\Article;
class ArticleService extends Service
{
public function create(array $request, string $client = null): Article
public function create(array $request, ?string $client = null): Article
{
return Article::create([
'title' => $this->getDataByKey($request, 'name'),

View file

@ -18,7 +18,7 @@ class BookmarkService extends Service
/**
* Create a new Bookmark.
*/
public function create(array $request, string $client = null): Bookmark
public function create(array $request, ?string $client = null): Bookmark
{
if (Arr::get($request, 'properties.bookmark-of.0')) {
//micropub request

View file

@ -13,7 +13,7 @@ class LikeService extends Service
/**
* Create a new Like.
*/
public function create(array $request, string $client = null): Like
public function create(array $request, ?string $client = null): Like
{
if (Arr::get($request, 'properties.like-of.0')) {
//micropub request

View file

@ -15,7 +15,7 @@ class HEntryService
/**
* Create the relevant model from some h-entry data.
*/
public function process(array $request, string $client = null): ?string
public function process(array $request, ?string $client = null): ?string
{
if (Arr::get($request, 'properties.like-of') || Arr::get($request, 'like-of')) {
return resolve(LikeService::class)->create($request)->longurl;

View file

@ -18,7 +18,7 @@ class NoteService extends Service
/**
* Create a new note.
*/
public function create(array $request, string $client = null): Note
public function create(array $request, ?string $client = null): Note
{
$note = Note::create(
[

View file

@ -9,7 +9,7 @@ use Illuminate\Support\Arr;
abstract class Service
{
abstract public function create(array $request, string $client = null): Model;
abstract public function create(array $request, ?string $client = null): Model;
protected function getDataByKey(array $request, string $key): ?string
{

229
composer.lock generated
View file

@ -62,16 +62,16 @@
},
{
"name": "aws/aws-sdk-php",
"version": "3.293.2",
"version": "3.293.5",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
"reference": "1d3e952ea2f45bb0d42d7f873d1b4957bb6362c4"
"reference": "f2002e52b382b45231da3f9552033f769acfebd8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/1d3e952ea2f45bb0d42d7f873d1b4957bb6362c4",
"reference": "1d3e952ea2f45bb0d42d7f873d1b4957bb6362c4",
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/f2002e52b382b45231da3f9552033f769acfebd8",
"reference": "f2002e52b382b45231da3f9552033f769acfebd8",
"shasum": ""
},
"require": {
@ -151,9 +151,9 @@
"support": {
"forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
"issues": "https://github.com/aws/aws-sdk-php/issues",
"source": "https://github.com/aws/aws-sdk-php/tree/3.293.2"
"source": "https://github.com/aws/aws-sdk-php/tree/3.293.5"
},
"time": "2023-12-01T19:06:15+00:00"
"time": "2023-12-06T19:09:15+00:00"
},
{
"name": "brick/math",
@ -2296,16 +2296,16 @@
},
{
"name": "laravel/scout",
"version": "v10.6.0",
"version": "v10.6.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/scout.git",
"reference": "f9bc115d253de8d3f3f2c201651174f6a5f1a357"
"reference": "fc9bc0c2061eb54b31d9dba0999755177a8f1a0e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/scout/zipball/f9bc115d253de8d3f3f2c201651174f6a5f1a357",
"reference": "f9bc115d253de8d3f3f2c201651174f6a5f1a357",
"url": "https://api.github.com/repos/laravel/scout/zipball/fc9bc0c2061eb54b31d9dba0999755177a8f1a0e",
"reference": "fc9bc0c2061eb54b31d9dba0999755177a8f1a0e",
"shasum": ""
},
"require": {
@ -2367,7 +2367,7 @@
"issues": "https://github.com/laravel/scout/issues",
"source": "https://github.com/laravel/scout"
},
"time": "2023-11-28T15:58:23+00:00"
"time": "2023-12-05T19:44:31+00:00"
},
{
"name": "laravel/serializable-closure",
@ -9228,16 +9228,16 @@
},
{
"name": "doctrine/dbal",
"version": "3.7.1",
"version": "3.7.2",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
"reference": "5b7bd66c9ff58c04c5474ab85edce442f8081cb2"
"reference": "0ac3c270590e54910715e9a1a044cc368df282b2"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/doctrine/dbal/zipball/5b7bd66c9ff58c04c5474ab85edce442f8081cb2",
"reference": "5b7bd66c9ff58c04c5474ab85edce442f8081cb2",
"url": "https://api.github.com/repos/doctrine/dbal/zipball/0ac3c270590e54910715e9a1a044cc368df282b2",
"reference": "0ac3c270590e54910715e9a1a044cc368df282b2",
"shasum": ""
},
"require": {
@ -9253,7 +9253,7 @@
"doctrine/coding-standard": "12.0.0",
"fig/log-test": "^1",
"jetbrains/phpstorm-stubs": "2023.1",
"phpstan/phpstan": "1.10.35",
"phpstan/phpstan": "1.10.42",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "9.6.13",
"psalm/plugin-phpunit": "0.18.4",
@ -9321,7 +9321,7 @@
],
"support": {
"issues": "https://github.com/doctrine/dbal/issues",
"source": "https://github.com/doctrine/dbal/tree/3.7.1"
"source": "https://github.com/doctrine/dbal/tree/3.7.2"
},
"funding": [
{
@ -9337,7 +9337,7 @@
"type": "tidelift"
}
],
"time": "2023-10-06T05:06:20+00:00"
"time": "2023-11-19T08:06:58+00:00"
},
{
"name": "doctrine/deprecations",
@ -9709,16 +9709,16 @@
},
{
"name": "filp/whoops",
"version": "2.15.3",
"version": "2.15.4",
"source": {
"type": "git",
"url": "https://github.com/filp/whoops.git",
"reference": "c83e88a30524f9360b11f585f71e6b17313b7187"
"reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187",
"reference": "c83e88a30524f9360b11f585f71e6b17313b7187",
"url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
"reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
"shasum": ""
},
"require": {
@ -9768,7 +9768,7 @@
],
"support": {
"issues": "https://github.com/filp/whoops/issues",
"source": "https://github.com/filp/whoops/tree/2.15.3"
"source": "https://github.com/filp/whoops/tree/2.15.4"
},
"funding": [
{
@ -9776,7 +9776,7 @@
"type": "github"
}
],
"time": "2023-07-13T12:00:00+00:00"
"time": "2023-11-03T12:00:00+00:00"
},
{
"name": "hamcrest/hamcrest-php",
@ -9831,16 +9831,16 @@
},
{
"name": "laravel/dusk",
"version": "v7.11.4",
"version": "v7.12.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/dusk.git",
"reference": "99df89ae46cdc197c2e0242ce45b96e5d7633a7b"
"reference": "94534fa924600e7a103f177d41b74e9b94f0994d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/dusk/zipball/99df89ae46cdc197c2e0242ce45b96e5d7633a7b",
"reference": "99df89ae46cdc197c2e0242ce45b96e5d7633a7b",
"url": "https://api.github.com/repos/laravel/dusk/zipball/94534fa924600e7a103f177d41b74e9b94f0994d",
"reference": "94534fa924600e7a103f177d41b74e9b94f0994d",
"shasum": ""
},
"require": {
@ -9901,22 +9901,22 @@
],
"support": {
"issues": "https://github.com/laravel/dusk/issues",
"source": "https://github.com/laravel/dusk/tree/v7.11.4"
"source": "https://github.com/laravel/dusk/tree/v7.12.0"
},
"time": "2023-11-14T15:14:47+00:00"
"time": "2023-12-05T15:05:04+00:00"
},
{
"name": "laravel/pint",
"version": "v1.13.6",
"version": "v1.13.7",
"source": {
"type": "git",
"url": "https://github.com/laravel/pint.git",
"reference": "3e3d2ab01c7d8b484c18e6100ecf53639c744fa7"
"reference": "4157768980dbd977f1c4b4cc94997416d8b30ece"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/pint/zipball/3e3d2ab01c7d8b484c18e6100ecf53639c744fa7",
"reference": "3e3d2ab01c7d8b484c18e6100ecf53639c744fa7",
"url": "https://api.github.com/repos/laravel/pint/zipball/4157768980dbd977f1c4b4cc94997416d8b30ece",
"reference": "4157768980dbd977f1c4b4cc94997416d8b30ece",
"shasum": ""
},
"require": {
@ -9969,20 +9969,20 @@
"issues": "https://github.com/laravel/pint/issues",
"source": "https://github.com/laravel/pint"
},
"time": "2023-11-07T17:59:57+00:00"
"time": "2023-12-05T19:43:12+00:00"
},
{
"name": "laravel/sail",
"version": "v1.26.2",
"version": "v1.26.3",
"source": {
"type": "git",
"url": "https://github.com/laravel/sail.git",
"reference": "c0177786b1cd05b687b0fa11364aeeecb42cd3d8"
"reference": "fa1ad5fbb03686dfc752bfd1861d86091cc1c32d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/sail/zipball/c0177786b1cd05b687b0fa11364aeeecb42cd3d8",
"reference": "c0177786b1cd05b687b0fa11364aeeecb42cd3d8",
"url": "https://api.github.com/repos/laravel/sail/zipball/fa1ad5fbb03686dfc752bfd1861d86091cc1c32d",
"reference": "fa1ad5fbb03686dfc752bfd1861d86091cc1c32d",
"shasum": ""
},
"require": {
@ -10034,7 +10034,7 @@
"issues": "https://github.com/laravel/sail/issues",
"source": "https://github.com/laravel/sail"
},
"time": "2023-11-27T14:46:06+00:00"
"time": "2023-12-02T18:26:39+00:00"
},
{
"name": "maximebf/debugbar",
@ -10487,31 +10487,32 @@
},
{
"name": "orchestra/canvas",
"version": "v8.11.2",
"version": "v8.11.4",
"source": {
"type": "git",
"url": "https://github.com/orchestral/canvas.git",
"reference": "5038b630e2306a8e7486d69628d84fa2d1764cb1"
"reference": "466ed3d7c1755e49be1c8e5557b434381b8ab6d1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/orchestral/canvas/zipball/5038b630e2306a8e7486d69628d84fa2d1764cb1",
"reference": "5038b630e2306a8e7486d69628d84fa2d1764cb1",
"url": "https://api.github.com/repos/orchestral/canvas/zipball/466ed3d7c1755e49be1c8e5557b434381b8ab6d1",
"reference": "466ed3d7c1755e49be1c8e5557b434381b8ab6d1",
"shasum": ""
},
"require": {
"composer-runtime-api": "^2.2",
"composer/semver": "^3.0",
"illuminate/console": "^10.26",
"illuminate/database": "^10.26",
"illuminate/support": "^10.26",
"orchestra/canvas-core": "^8.9",
"illuminate/console": "^10.33",
"illuminate/database": "^10.33",
"illuminate/support": "^10.33",
"orchestra/canvas-core": "^8.10.1",
"orchestra/testbench-core": "^8.11",
"php": "^8.1",
"symfony/polyfill-php83": "^1.28",
"symfony/yaml": "^6.2"
},
"require-dev": {
"laravel/framework": "^10.26",
"laravel/framework": "^10.33",
"laravel/pint": "^1.6",
"mockery/mockery": "^1.5.1",
"phpstan/phpstan": "^1.10.5",
@ -10554,22 +10555,22 @@
"description": "Code Generators for Laravel Applications and Packages",
"support": {
"issues": "https://github.com/orchestral/canvas/issues",
"source": "https://github.com/orchestral/canvas/tree/v8.11.2"
"source": "https://github.com/orchestral/canvas/tree/v8.11.4"
},
"time": "2023-10-26T21:59:54+00:00"
"time": "2023-11-27T04:47:24+00:00"
},
{
"name": "orchestra/canvas-core",
"version": "v8.10.0",
"version": "v8.10.1",
"source": {
"type": "git",
"url": "https://github.com/orchestral/canvas-core.git",
"reference": "642a966b1f8a351a994c04ce1e03a5ddd1025ff5"
"reference": "d4c3325d231deceecdc33fa0b3698efd132ce9f0"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/orchestral/canvas-core/zipball/642a966b1f8a351a994c04ce1e03a5ddd1025ff5",
"reference": "642a966b1f8a351a994c04ce1e03a5ddd1025ff5",
"url": "https://api.github.com/repos/orchestral/canvas-core/zipball/d4c3325d231deceecdc33fa0b3698efd132ce9f0",
"reference": "d4c3325d231deceecdc33fa0b3698efd132ce9f0",
"shasum": ""
},
"require": {
@ -10577,17 +10578,21 @@
"composer/semver": "^3.0",
"illuminate/console": "^10.26",
"illuminate/filesystem": "^10.26",
"php": "^8.1"
"php": "^8.1",
"symfony/polyfill-php83": "^1.28"
},
"conflict": {
"orchestra/canvas": "<8.11.0",
"orchestra/testbench-core": "<8.2.0"
},
"require-dev": {
"laravel/framework": "^10.26",
"laravel/pint": "^1.6",
"orchestra/testbench": "^8.13",
"mockery/mockery": "^1.5.1",
"orchestra/testbench-core": "^8.15",
"phpstan/phpstan": "^1.10.6",
"phpunit/phpunit": "^10.1"
"phpunit/phpunit": "^10.1",
"symfony/yaml": "^6.2"
},
"type": "library",
"extra": {
@ -10622,22 +10627,22 @@
"description": "Code Generators Builder for Laravel Applications and Packages",
"support": {
"issues": "https://github.com/orchestral/canvas/issues",
"source": "https://github.com/orchestral/canvas-core/tree/v8.10.0"
"source": "https://github.com/orchestral/canvas-core/tree/v8.10.1"
},
"time": "2023-10-16T01:44:47+00:00"
"time": "2023-11-27T03:19:28+00:00"
},
{
"name": "orchestra/testbench",
"version": "v8.14.0",
"version": "v8.17.0",
"source": {
"type": "git",
"url": "https://github.com/orchestral/testbench.git",
"reference": "7dacad632a5f48830443f739cd846212c174448a"
"reference": "3bbe0956df4b6f811ca879e2a8d69a8a8b626587"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/orchestral/testbench/zipball/7dacad632a5f48830443f739cd846212c174448a",
"reference": "7dacad632a5f48830443f739cd846212c174448a",
"url": "https://api.github.com/repos/orchestral/testbench/zipball/3bbe0956df4b6f811ca879e2a8d69a8a8b626587",
"reference": "3bbe0956df4b6f811ca879e2a8d69a8a8b626587",
"shasum": ""
},
"require": {
@ -10645,11 +10650,10 @@
"fakerphp/faker": "^1.21",
"laravel/framework": "^10.23.1",
"mockery/mockery": "^1.5.1",
"orchestra/testbench-core": ">=8.14.0 <8.15.0",
"orchestra/workbench": "^1.0",
"orchestra/testbench-core": "^8.17",
"orchestra/workbench": "^1.2 || ^8.2",
"php": "^8.1",
"phpunit/phpunit": "^9.6 || ^10.1",
"spatie/laravel-ray": "^1.32.4",
"symfony/process": "^6.2",
"symfony/yaml": "^6.2",
"vlucas/phpdotenv": "^5.4.1"
@ -10678,37 +10682,37 @@
],
"support": {
"issues": "https://github.com/orchestral/testbench/issues",
"source": "https://github.com/orchestral/testbench/tree/v8.14.0"
"source": "https://github.com/orchestral/testbench/tree/v8.17.0"
},
"time": "2023-10-24T04:44:26+00:00"
"time": "2023-12-06T03:25:17+00:00"
},
{
"name": "orchestra/testbench-core",
"version": "v8.14.1",
"version": "v8.17.1",
"source": {
"type": "git",
"url": "https://github.com/orchestral/testbench-core.git",
"reference": "5719db860336128ebc4d09e4525c4e0a16e61cb5"
"reference": "6856e979790c18705812b2b6c3c73bb1f6d8baa8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/orchestral/testbench-core/zipball/5719db860336128ebc4d09e4525c4e0a16e61cb5",
"reference": "5719db860336128ebc4d09e4525c4e0a16e61cb5",
"url": "https://api.github.com/repos/orchestral/testbench-core/zipball/6856e979790c18705812b2b6c3c73bb1f6d8baa8",
"reference": "6856e979790c18705812b2b6c3c73bb1f6d8baa8",
"shasum": ""
},
"require": {
"composer-runtime-api": "^2.2",
"php": "^8.1"
"php": "^8.1",
"symfony/polyfill-php83": "^1.28"
},
"conflict": {
"brianium/paratest": "<6.4.0 || >=7.0.0 <7.1.4 || >=8.0.0",
"laravel/framework": "<10.23.1 || >=11.0.0",
"nunomaduro/collision": "<6.4.0 || >=7.0.0 <7.4.0 || >=8.0.0",
"orchestra/workbench": "<1.0.0",
"phpunit/phpunit": "<9.6.0 || >=10.5.0"
"phpunit/phpunit": "<9.6.0 || >=10.6.0"
},
"require-dev": {
"composer-runtime-api": "^2.2",
"fakerphp/faker": "^1.21",
"laravel/framework": "^10.23",
"laravel/pint": "^1.6",
@ -10769,39 +10773,40 @@
"issues": "https://github.com/orchestral/testbench/issues",
"source": "https://github.com/orchestral/testbench-core"
},
"time": "2023-10-24T06:16:05+00:00"
"time": "2023-12-06T08:00:50+00:00"
},
{
"name": "orchestra/workbench",
"version": "v1.0.0",
"version": "v8.2.0",
"source": {
"type": "git",
"url": "https://github.com/orchestral/workbench.git",
"reference": "6b58fd5ab593d9798ebe80c9113ef40c4903069e"
"reference": "63b3961efa515abfcfd340805e6713eb540b7a39"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/orchestral/workbench/zipball/6b58fd5ab593d9798ebe80c9113ef40c4903069e",
"reference": "6b58fd5ab593d9798ebe80c9113ef40c4903069e",
"url": "https://api.github.com/repos/orchestral/workbench/zipball/63b3961efa515abfcfd340805e6713eb540b7a39",
"reference": "63b3961efa515abfcfd340805e6713eb540b7a39",
"shasum": ""
},
"require": {
"composer-runtime-api": "^2.2",
"fakerphp/faker": "^1.21",
"laravel/framework": "^9.52.15 || ^10.26.0",
"laravel/framework": "^10.26",
"laravel/tinker": "^2.8.2",
"orchestra/canvas": "^7.10.0 || ^8.11.0",
"orchestra/testbench-core": "^7.34.0 || ^8.14.0",
"php": "^8.0",
"symfony/yaml": "^6.0.9"
"orchestra/canvas": "^8.11.4",
"orchestra/testbench-core": "^8.17",
"php": "^8.1",
"spatie/laravel-ray": "^1.32.4",
"symfony/polyfill-php83": "^1.28",
"symfony/yaml": "^6.2"
},
"require-dev": {
"laravel/pint": "^1.4",
"mockery/mockery": "^1.5.1",
"phpstan/phpstan": "^1.10.7",
"phpunit/phpunit": "^9.6",
"spatie/laravel-ray": "^1.32.4",
"symfony/process": "^6.0.9"
"phpunit/phpunit": "^10.1",
"symfony/process": "^6.2"
},
"type": "library",
"extra": {
@ -10833,9 +10838,9 @@
],
"support": {
"issues": "https://github.com/orchestral/workbench/issues",
"source": "https://github.com/orchestral/workbench/tree/v1.0.0"
"source": "https://github.com/orchestral/workbench/tree/v8.2.0"
},
"time": "2023-10-24T03:15:04+00:00"
"time": "2023-12-06T02:59:43+00:00"
},
{
"name": "phar-io/manifest",
@ -10950,16 +10955,16 @@
},
{
"name": "php-http/discovery",
"version": "1.19.1",
"version": "1.19.2",
"source": {
"type": "git",
"url": "https://github.com/php-http/discovery.git",
"reference": "57f3de01d32085fea20865f9b16fb0e69347c39e"
"reference": "61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-http/discovery/zipball/57f3de01d32085fea20865f9b16fb0e69347c39e",
"reference": "57f3de01d32085fea20865f9b16fb0e69347c39e",
"url": "https://api.github.com/repos/php-http/discovery/zipball/61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb",
"reference": "61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb",
"shasum": ""
},
"require": {
@ -11022,9 +11027,9 @@
],
"support": {
"issues": "https://github.com/php-http/discovery/issues",
"source": "https://github.com/php-http/discovery/tree/1.19.1"
"source": "https://github.com/php-http/discovery/tree/1.19.2"
},
"time": "2023-07-11T07:02:26+00:00"
"time": "2023-11-30T16:49:05+00:00"
},
{
"name": "php-http/multipart-stream-builder",
@ -11686,16 +11691,16 @@
},
{
"name": "phpunit/phpunit",
"version": "10.4.2",
"version": "10.5.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "cacd8b9dd224efa8eb28beb69004126c7ca1a1a1"
"reference": "5aedff46afba98dddecaa12349ec044d9103d4fe"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/cacd8b9dd224efa8eb28beb69004126c7ca1a1a1",
"reference": "cacd8b9dd224efa8eb28beb69004126c7ca1a1a1",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/5aedff46afba98dddecaa12349ec044d9103d4fe",
"reference": "5aedff46afba98dddecaa12349ec044d9103d4fe",
"shasum": ""
},
"require": {
@ -11735,7 +11740,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "10.4-dev"
"dev-main": "10.5-dev"
}
},
"autoload": {
@ -11767,7 +11772,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
"source": "https://github.com/sebastianbergmann/phpunit/tree/10.4.2"
"source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.2"
},
"funding": [
{
@ -11783,7 +11788,7 @@
"type": "tidelift"
}
],
"time": "2023-10-26T07:21:45+00:00"
"time": "2023-12-05T14:54:33+00:00"
},
{
"name": "pimple/pimple",
@ -13075,16 +13080,16 @@
},
{
"name": "spatie/ray",
"version": "1.39.0",
"version": "1.40.1",
"source": {
"type": "git",
"url": "https://github.com/spatie/ray.git",
"reference": "7ab6bd01dc6a8ecdd836b3182d40a04308ae0c75"
"reference": "8e6547ff47aae2e4f615a5dcea1e5e4911b1dc9f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/spatie/ray/zipball/7ab6bd01dc6a8ecdd836b3182d40a04308ae0c75",
"reference": "7ab6bd01dc6a8ecdd836b3182d40a04308ae0c75",
"url": "https://api.github.com/repos/spatie/ray/zipball/8e6547ff47aae2e4f615a5dcea1e5e4911b1dc9f",
"reference": "8e6547ff47aae2e4f615a5dcea1e5e4911b1dc9f",
"shasum": ""
},
"require": {
@ -13135,7 +13140,7 @@
],
"support": {
"issues": "https://github.com/spatie/ray/issues",
"source": "https://github.com/spatie/ray/tree/1.39.0"
"source": "https://github.com/spatie/ray/tree/1.40.1"
},
"funding": [
{
@ -13147,7 +13152,7 @@
"type": "other"
}
],
"time": "2023-09-18T10:36:07+00:00"
"time": "2023-11-20T08:20:15+00:00"
},
{
"name": "symfony/filesystem",
@ -13297,7 +13302,7 @@
},
{
"name": "symfony/stopwatch",
"version": "v6.3.0",
"version": "v6.4.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/stopwatch.git",
@ -13339,7 +13344,7 @@
"description": "Provides a way to profile code",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/stopwatch/tree/v6.3.0"
"source": "https://github.com/symfony/stopwatch/tree/v6.4.0"
},
"funding": [
{

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
{
"/app.js": "/app.js?id=ff1533ec4a7afad65c5bd7bcc2cc7d7b",
"/app.js": "/app.js?id=79bae40dcb18de9ca1b5d0008c577471",
"/app-dark.css": "/app-dark.css?id=15c72df05e2b1147fa3e4b0670cfb435",
"/app.css": "/app.css?id=4d6a1a7fe095eedc2cb2a4ce822ea8a5",
"/img/favicon.png": "/img/favicon.png?id=1542bfe8a0010dcbee710da13cce367f",