Merge pull request #3933 from pixelfed/staging

Staging
This commit is contained in:
daniel 2022-12-12 19:21:59 -07:00 committed by GitHub
commit 6a22624fc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 262 additions and 198 deletions

View file

@ -131,7 +131,7 @@ class FederationController extends Controller
'orderedItems' => [] 'orderedItems' => []
]; ];
return response(json_encode($res, JSON_UNESCAPED_SLASHES))->header('Content-Type', 'application/ld+json; profile="http://www.w3.org/ns/activitystreams"'); return response(json_encode($res, JSON_UNESCAPED_SLASHES))->header('Content-Type', 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"');
} }
public function userInbox(Request $request, $username) public function userInbox(Request $request, $username)

View file

@ -14,7 +14,7 @@ class InstanceActorController extends Controller
$res = (new InstanceActor())->first()->getActor(); $res = (new InstanceActor())->first()->getActor();
return json_encode($res, JSON_UNESCAPED_SLASHES); return json_encode($res, JSON_UNESCAPED_SLASHES);
}); });
return response($res)->header('Content-Type', 'application/ld+json; profile="http://www.w3.org/ns/activitystreams"'); return response($res)->header('Content-Type', 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"');
} }
public function inbox() public function inbox()
@ -32,6 +32,6 @@ class InstanceActorController extends Controller
'first' => config('app.url') . '/i/actor/outbox?page=true', 'first' => config('app.url') . '/i/actor/outbox?page=true',
'last' => config('app.url') . '/i/actor/outbox?min_id=0page=true' 'last' => config('app.url') . '/i/actor/outbox?min_id=0page=true'
], JSON_UNESCAPED_SLASHES); ], JSON_UNESCAPED_SLASHES);
return response($res)->header('Content-Type', 'application/ld+json; profile="http://www.w3.org/ns/activitystreams"'); return response($res)->header('Content-Type', 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"');
} }
} }

View file

@ -191,7 +191,7 @@ class ProfileController extends Controller
$fractal = new Fractal\Manager(); $fractal = new Fractal\Manager();
$resource = new Fractal\Resource\Item($user, new ProfileTransformer); $resource = new Fractal\Resource\Item($user, new ProfileTransformer);
$res = $fractal->createData($resource)->toArray(); $res = $fractal->createData($resource)->toArray();
return response(json_encode($res['data']))->header('Content-Type', 'application/ld+json; profile="http://www.w3.org/ns/activitystreams"'); return response(json_encode($res['data']))->header('Content-Type', 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"');
}); });
} }

View file

@ -293,7 +293,7 @@ class StatusController extends Controller
$resource = new Fractal\Resource\Item($status, $object); $resource = new Fractal\Resource\Item($status, $object);
$res = $fractal->createData($resource)->toArray(); $res = $fractal->createData($resource)->toArray();
return response()->json($res['data'], 200, ['Content-Type' => 'application/ld+json; profile="http://www.w3.org/ns/activitystreams"'], JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES); return response()->json($res['data'], 200, ['Content-Type' => 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'], JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES);
} }
public function edit(Request $request, $username, $id) public function edit(Request $request, $username, $id)

View file

@ -97,7 +97,7 @@ class RemoteFollowPipeline implements ShouldQueue
$res = $this->response; $res = $this->response;
$url = $res['inbox']; $url = $res['inbox'];
$activity = Zttp::withHeaders(['Content-Type' => 'application/ld+json; profile="http://www.w3.org/ns/activitystreams"'])->post($url, [ $activity = Zttp::withHeaders(['Content-Type' => 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'])->post($url, [
'type' => 'Follow', 'type' => 'Follow',
'object' => $this->follower->url(), 'object' => $this->follower->url(),
]); ]);

View file

@ -69,7 +69,7 @@ class StoryFetch implements ShouldQueue
$version = config('pixelfed.version'); $version = config('pixelfed.version');
$appUrl = config('app.url'); $appUrl = config('app.url');
$headers = [ $headers = [
'Accept' => 'application/ld+json; profile="http://www.w3.org/ns/activitystreams"', 'Accept' => 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
'Authorization' => 'Bearer ' . $token, 'Authorization' => 'Bearer ' . $token,
'User-Agent' => "(Pixelfed/{$version}; +{$appUrl})", 'User-Agent' => "(Pixelfed/{$version}; +{$appUrl})",
]; ];

View file

@ -17,7 +17,7 @@ class ActivityPubFetchService
} }
$headers = HttpSignature::instanceActorSign($url, false); $headers = HttpSignature::instanceActorSign($url, false);
$headers['Accept'] = 'application/activity+json, application/ld+json; profile="http://www.w3.org/ns/activitystreams"'; $headers['Accept'] = 'application/activity+json, application/ld+json; profile="https://www.w3.org/ns/activitystreams"';
$headers['User-Agent'] = '(Pixelfed/'.config('pixelfed.version').'; +'.config('app.url').')'; $headers['User-Agent'] = '(Pixelfed/'.config('pixelfed.version').'; +'.config('app.url').')';
try { try {

View file

@ -132,7 +132,7 @@ class HttpSignature {
'(request-target)' => 'post '.parse_url($url, PHP_URL_PATH), '(request-target)' => 'post '.parse_url($url, PHP_URL_PATH),
'Date' => $date->format('D, d M Y H:i:s \G\M\T'), 'Date' => $date->format('D, d M Y H:i:s \G\M\T'),
'Host' => parse_url($url, PHP_URL_HOST), 'Host' => parse_url($url, PHP_URL_HOST),
'Accept' => 'application/activity+json, application/ld+json; profile="http://www.w3.org/ns/activitystreams"', 'Accept' => 'application/activity+json, application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
]; ];
if($digest) { if($digest) {

370
composer.lock generated
View file

@ -114,16 +114,16 @@
}, },
{ {
"name": "aws/aws-sdk-php", "name": "aws/aws-sdk-php",
"version": "3.252.0", "version": "3.253.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/aws/aws-sdk-php.git", "url": "https://github.com/aws/aws-sdk-php.git",
"reference": "2093beca5380b737fecfdd064cfa97179e4b7c00" "reference": "1fc9d166dd8ee7c2a187cf8f3ed9342863208865"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/2093beca5380b737fecfdd064cfa97179e4b7c00", "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/1fc9d166dd8ee7c2a187cf8f3ed9342863208865",
"reference": "2093beca5380b737fecfdd064cfa97179e4b7c00", "reference": "1fc9d166dd8ee7c2a187cf8f3ed9342863208865",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -202,22 +202,22 @@
"support": { "support": {
"forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
"issues": "https://github.com/aws/aws-sdk-php/issues", "issues": "https://github.com/aws/aws-sdk-php/issues",
"source": "https://github.com/aws/aws-sdk-php/tree/3.252.0" "source": "https://github.com/aws/aws-sdk-php/tree/3.253.0"
}, },
"time": "2022-12-01T19:18:22+00:00" "time": "2022-12-12T19:23:54+00:00"
}, },
{ {
"name": "bacon/bacon-qr-code", "name": "bacon/bacon-qr-code",
"version": "2.0.7", "version": "2.0.8",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/Bacon/BaconQrCode.git", "url": "https://github.com/Bacon/BaconQrCode.git",
"reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c" "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/d70c840f68657ce49094b8d91f9ee0cc07fbf66c", "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
"reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c", "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -256,9 +256,9 @@
"homepage": "https://github.com/Bacon/BaconQrCode", "homepage": "https://github.com/Bacon/BaconQrCode",
"support": { "support": {
"issues": "https://github.com/Bacon/BaconQrCode/issues", "issues": "https://github.com/Bacon/BaconQrCode/issues",
"source": "https://github.com/Bacon/BaconQrCode/tree/2.0.7" "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
}, },
"time": "2022-03-14T02:02:36+00:00" "time": "2022-12-07T17:46:57+00:00"
}, },
{ {
"name": "beyondcode/laravel-websockets", "name": "beyondcode/laravel-websockets",
@ -2400,16 +2400,16 @@
}, },
{ {
"name": "laravel/framework", "name": "laravel/framework",
"version": "v9.42.2", "version": "v9.43.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/framework.git", "url": "https://github.com/laravel/framework.git",
"reference": "607d7867c93706eae20e28e46679f8a66e2a23ec" "reference": "011f2e1d49a11c22519a7899b46ddf3bc5b0f40b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/607d7867c93706eae20e28e46679f8a66e2a23ec", "url": "https://api.github.com/repos/laravel/framework/zipball/011f2e1d49a11c22519a7899b46ddf3bc5b0f40b",
"reference": "607d7867c93706eae20e28e46679f8a66e2a23ec", "reference": "011f2e1d49a11c22519a7899b46ddf3bc5b0f40b",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2582,7 +2582,7 @@
"issues": "https://github.com/laravel/framework/issues", "issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework" "source": "https://github.com/laravel/framework"
}, },
"time": "2022-11-30T16:23:52+00:00" "time": "2022-12-06T14:26:07+00:00"
}, },
{ {
"name": "laravel/helpers", "name": "laravel/helpers",
@ -3120,16 +3120,16 @@
}, },
{ {
"name": "league/commonmark", "name": "league/commonmark",
"version": "2.3.7", "version": "2.3.8",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/thephpleague/commonmark.git", "url": "https://github.com/thephpleague/commonmark.git",
"reference": "a36bd2be4f5387c0f3a8792a0d76b7d68865abbf" "reference": "c493585c130544c4e91d2e0e131e6d35cb0cbc47"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/a36bd2be4f5387c0f3a8792a0d76b7d68865abbf", "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c493585c130544c4e91d2e0e131e6d35cb0cbc47",
"reference": "a36bd2be4f5387c0f3a8792a0d76b7d68865abbf", "reference": "c493585c130544c4e91d2e0e131e6d35cb0cbc47",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3157,7 +3157,7 @@
"symfony/finder": "^5.3 | ^6.0", "symfony/finder": "^5.3 | ^6.0",
"symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
"unleashedtech/php-coding-standard": "^3.1.1", "unleashedtech/php-coding-standard": "^3.1.1",
"vimeo/psalm": "^4.24.0" "vimeo/psalm": "^4.24.0 || ^5.0.0"
}, },
"suggest": { "suggest": {
"symfony/yaml": "v2.3+ required if using the Front Matter extension" "symfony/yaml": "v2.3+ required if using the Front Matter extension"
@ -3222,20 +3222,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-03T17:29:46+00:00" "time": "2022-12-10T16:02:17+00:00"
}, },
{ {
"name": "league/config", "name": "league/config",
"version": "v1.1.1", "version": "v1.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/thephpleague/config.git", "url": "https://github.com/thephpleague/config.git",
"reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e" "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
"reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3244,7 +3244,7 @@
"php": "^7.4 || ^8.0" "php": "^7.4 || ^8.0"
}, },
"require-dev": { "require-dev": {
"phpstan/phpstan": "^0.12.90", "phpstan/phpstan": "^1.8.2",
"phpunit/phpunit": "^9.5.5", "phpunit/phpunit": "^9.5.5",
"scrutinizer/ocular": "^1.8.1", "scrutinizer/ocular": "^1.8.1",
"unleashedtech/php-coding-standard": "^3.1", "unleashedtech/php-coding-standard": "^3.1",
@ -3304,7 +3304,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2021-08-14T12:15:32+00:00" "time": "2022-12-11T20:36:23+00:00"
}, },
{ {
"name": "league/event", "name": "league/event",
@ -3362,16 +3362,16 @@
}, },
{ {
"name": "league/flysystem", "name": "league/flysystem",
"version": "3.10.4", "version": "3.11.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/thephpleague/flysystem.git", "url": "https://github.com/thephpleague/flysystem.git",
"reference": "a7790f3dd1b27af81d380e6b2afa77c16ab7e181" "reference": "7e423e5dd240a60adfab9bde058d7668863b7731"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a7790f3dd1b27af81d380e6b2afa77c16ab7e181", "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/7e423e5dd240a60adfab9bde058d7668863b7731",
"reference": "a7790f3dd1b27af81d380e6b2afa77c16ab7e181", "reference": "7e423e5dd240a60adfab9bde058d7668863b7731",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3433,7 +3433,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/thephpleague/flysystem/issues", "issues": "https://github.com/thephpleague/flysystem/issues",
"source": "https://github.com/thephpleague/flysystem/tree/3.10.4" "source": "https://github.com/thephpleague/flysystem/tree/3.11.0"
}, },
"funding": [ "funding": [
{ {
@ -3449,7 +3449,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-26T19:48:01+00:00" "time": "2022-12-02T14:39:57+00:00"
}, },
{ {
"name": "league/flysystem-aws-s3-v3", "name": "league/flysystem-aws-s3-v3",
@ -4114,16 +4114,16 @@
}, },
{ {
"name": "nesbot/carbon", "name": "nesbot/carbon",
"version": "2.63.0", "version": "2.64.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/briannesbitt/Carbon.git", "url": "https://github.com/briannesbitt/Carbon.git",
"reference": "ad35dd71a6a212b98e4b87e97389b6fa85f0e347" "reference": "889546413c97de2d05063b8cb7b193c2531ea211"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/ad35dd71a6a212b98e4b87e97389b6fa85f0e347", "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/889546413c97de2d05063b8cb7b193c2531ea211",
"reference": "ad35dd71a6a212b98e4b87e97389b6fa85f0e347", "reference": "889546413c97de2d05063b8cb7b193c2531ea211",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -4134,7 +4134,7 @@
"symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
}, },
"require-dev": { "require-dev": {
"doctrine/dbal": "^2.0 || ^3.0", "doctrine/dbal": "^2.0 || ^3.1.4",
"doctrine/orm": "^2.7", "doctrine/orm": "^2.7",
"friendsofphp/php-cs-fixer": "^3.0", "friendsofphp/php-cs-fixer": "^3.0",
"kylekatarnls/multi-tester": "^2.0", "kylekatarnls/multi-tester": "^2.0",
@ -4212,7 +4212,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-10-30T18:34:28+00:00" "time": "2022-11-26T17:36:00+00:00"
}, },
{ {
"name": "nette/schema", "name": "nette/schema",
@ -4785,26 +4785,28 @@
}, },
{ {
"name": "pbmedia/laravel-ffmpeg", "name": "pbmedia/laravel-ffmpeg",
"version": "8.1.2", "version": "8.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/protonemedia/laravel-ffmpeg.git", "url": "https://github.com/protonemedia/laravel-ffmpeg.git",
"reference": "e6f93d8e3b1a917d6991a1747e0e5f73531f1e08" "reference": "eac7fc20ef688519f6dc32ca1e8c034b640b2b37"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/protonemedia/laravel-ffmpeg/zipball/e6f93d8e3b1a917d6991a1747e0e5f73531f1e08", "url": "https://api.github.com/repos/protonemedia/laravel-ffmpeg/zipball/eac7fc20ef688519f6dc32ca1e8c034b640b2b37",
"reference": "e6f93d8e3b1a917d6991a1747e0e5f73531f1e08", "reference": "eac7fc20ef688519f6dc32ca1e8c034b640b2b37",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"illuminate/contracts": "^9.0", "illuminate/contracts": "^9.0",
"php": "^8.0|^8.1", "php": "^8.0|^8.1|^8.2",
"php-ffmpeg/php-ffmpeg": "^1.0.1" "php-ffmpeg/php-ffmpeg": "^1.1",
"ramsey/collection": "^1.2.2"
}, },
"require-dev": { "require-dev": {
"league/flysystem-memory": "^3.0", "league/flysystem-memory": "^3.0",
"mockery/mockery": "^1.3.3", "mockery/mockery": "^1.3.3",
"nesbot/carbon": "^2.63",
"orchestra/testbench": "^7.0", "orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5.10", "phpunit/phpunit": "^9.5.10",
"spatie/image": "^2.0", "spatie/image": "^2.0",
@ -4849,7 +4851,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/protonemedia/laravel-ffmpeg/issues", "issues": "https://github.com/protonemedia/laravel-ffmpeg/issues",
"source": "https://github.com/protonemedia/laravel-ffmpeg/tree/8.1.2" "source": "https://github.com/protonemedia/laravel-ffmpeg/tree/8.2.0"
}, },
"funding": [ "funding": [
{ {
@ -4857,25 +4859,25 @@
"type": "github" "type": "github"
} }
], ],
"time": "2022-05-23T12:00:47+00:00" "time": "2022-12-11T10:29:33+00:00"
}, },
{ {
"name": "php-ffmpeg/php-ffmpeg", "name": "php-ffmpeg/php-ffmpeg",
"version": "v1.0.1", "version": "v1.1.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git", "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
"reference": "bda300b69acecf791d2934cd5ed43a8ba24febf6" "reference": "eace6f174ff6d206ba648483ebe59760f7f6a0e1"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/bda300b69acecf791d2934cd5ed43a8ba24febf6", "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/eace6f174ff6d206ba648483ebe59760f7f6a0e1",
"reference": "bda300b69acecf791d2934cd5ed43a8ba24febf6", "reference": "eace6f174ff6d206ba648483ebe59760f7f6a0e1",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"evenement/evenement": "^3.0", "evenement/evenement": "^3.0",
"php": "^8.0 || ^8.1", "php": "^8.0 || ^8.1 || ^8.2",
"psr/log": "^1.0 || ^2.0 || ^3.0", "psr/log": "^1.0 || ^2.0 || ^3.0",
"spatie/temporary-directory": "^2.0", "spatie/temporary-directory": "^2.0",
"symfony/cache": "^5.4 || ^6.0", "symfony/cache": "^5.4 || ^6.0",
@ -4944,9 +4946,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues", "issues": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues",
"source": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/tree/v1.0.1" "source": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/tree/v1.1.0"
}, },
"time": "2022-02-22T15:54:06+00:00" "time": "2022-12-09T13:57:05+00:00"
}, },
{ {
"name": "php-http/message-factory", "name": "php-http/message-factory",
@ -7839,16 +7841,16 @@
}, },
{ {
"name": "symfony/cache-contracts", "name": "symfony/cache-contracts",
"version": "v3.1.1", "version": "v3.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/cache-contracts.git", "url": "https://github.com/symfony/cache-contracts.git",
"reference": "2eab7fa459af6d75c6463e63e633b667a9b761d3" "reference": "e8d1a5fc43534063204b74c080ebe36307d12271"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/cache-contracts/zipball/2eab7fa459af6d75c6463e63e633b667a9b761d3", "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/e8d1a5fc43534063204b74c080ebe36307d12271",
"reference": "2eab7fa459af6d75c6463e63e633b667a9b761d3", "reference": "e8d1a5fc43534063204b74c080ebe36307d12271",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -7861,7 +7863,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "3.1-dev" "dev-main": "3.3-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/contracts", "name": "symfony/contracts",
@ -7898,7 +7900,7 @@
"standards" "standards"
], ],
"support": { "support": {
"source": "https://github.com/symfony/cache-contracts/tree/v3.1.1" "source": "https://github.com/symfony/cache-contracts/tree/v3.2.0"
}, },
"funding": [ "funding": [
{ {
@ -7914,20 +7916,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-02-25T11:15:52+00:00" "time": "2022-11-25T10:21:52+00:00"
}, },
{ {
"name": "symfony/console", "name": "symfony/console",
"version": "v6.2.0", "version": "v6.2.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/console.git", "url": "https://github.com/symfony/console.git",
"reference": "75d4749d9620a8fa21a2d2847800a84b5c4e7682" "reference": "58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/75d4749d9620a8fa21a2d2847800a84b5c4e7682", "url": "https://api.github.com/repos/symfony/console/zipball/58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f",
"reference": "75d4749d9620a8fa21a2d2847800a84b5c4e7682", "reference": "58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -7994,7 +7996,7 @@
"terminal" "terminal"
], ],
"support": { "support": {
"source": "https://github.com/symfony/console/tree/v6.2.0" "source": "https://github.com/symfony/console/tree/v6.2.1"
}, },
"funding": [ "funding": [
{ {
@ -8010,7 +8012,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-29T16:44:51+00:00" "time": "2022-12-01T13:44:20+00:00"
}, },
{ {
"name": "symfony/css-selector", "name": "symfony/css-selector",
@ -8079,16 +8081,16 @@
}, },
{ {
"name": "symfony/deprecation-contracts", "name": "symfony/deprecation-contracts",
"version": "v3.1.1", "version": "v3.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/deprecation-contracts.git", "url": "https://github.com/symfony/deprecation-contracts.git",
"reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918" "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918", "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/1ee04c65529dea5d8744774d474e7cbd2f1206d3",
"reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918", "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -8097,7 +8099,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "3.1-dev" "dev-main": "3.3-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/contracts", "name": "symfony/contracts",
@ -8126,7 +8128,7 @@
"description": "A generic function and convention to trigger deprecation notices", "description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.1.1" "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.0"
}, },
"funding": [ "funding": [
{ {
@ -8142,20 +8144,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-02-25T11:15:52+00:00" "time": "2022-11-25T10:21:52+00:00"
}, },
{ {
"name": "symfony/error-handler", "name": "symfony/error-handler",
"version": "v6.2.0", "version": "v6.2.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/error-handler.git", "url": "https://github.com/symfony/error-handler.git",
"reference": "d9894724a9d20afd3329e36b36e45835b5c2ab3e" "reference": "b4e41f62c1124378863ff2705158a60da3e4c6b9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/d9894724a9d20afd3329e36b36e45835b5c2ab3e", "url": "https://api.github.com/repos/symfony/error-handler/zipball/b4e41f62c1124378863ff2705158a60da3e4c6b9",
"reference": "d9894724a9d20afd3329e36b36e45835b5c2ab3e", "reference": "b4e41f62c1124378863ff2705158a60da3e4c6b9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -8197,7 +8199,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code", "description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/error-handler/tree/v6.2.0" "source": "https://github.com/symfony/error-handler/tree/v6.2.1"
}, },
"funding": [ "funding": [
{ {
@ -8213,7 +8215,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-02T09:08:04+00:00" "time": "2022-12-01T21:07:46+00:00"
}, },
{ {
"name": "symfony/event-dispatcher", "name": "symfony/event-dispatcher",
@ -8300,16 +8302,16 @@
}, },
{ {
"name": "symfony/event-dispatcher-contracts", "name": "symfony/event-dispatcher-contracts",
"version": "v3.1.1", "version": "v3.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/event-dispatcher-contracts.git", "url": "https://github.com/symfony/event-dispatcher-contracts.git",
"reference": "02ff5eea2f453731cfbc6bc215e456b781480448" "reference": "0782b0b52a737a05b4383d0df35a474303cabdae"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/02ff5eea2f453731cfbc6bc215e456b781480448", "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0782b0b52a737a05b4383d0df35a474303cabdae",
"reference": "02ff5eea2f453731cfbc6bc215e456b781480448", "reference": "0782b0b52a737a05b4383d0df35a474303cabdae",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -8322,7 +8324,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "3.1-dev" "dev-main": "3.3-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/contracts", "name": "symfony/contracts",
@ -8359,7 +8361,7 @@
"standards" "standards"
], ],
"support": { "support": {
"source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.1.1" "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.0"
}, },
"funding": [ "funding": [
{ {
@ -8375,7 +8377,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-02-25T11:15:52+00:00" "time": "2022-11-25T10:21:52+00:00"
}, },
{ {
"name": "symfony/finder", "name": "symfony/finder",
@ -8609,16 +8611,16 @@
}, },
{ {
"name": "symfony/http-foundation", "name": "symfony/http-foundation",
"version": "v6.2.0", "version": "v6.2.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-foundation.git", "url": "https://github.com/symfony/http-foundation.git",
"reference": "edc56ed49a2955383d59e9b7043fd3bbc26f1854" "reference": "d0bbd5a7e81b38f32504399b9199f265505b7bac"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/edc56ed49a2955383d59e9b7043fd3bbc26f1854", "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d0bbd5a7e81b38f32504399b9199f265505b7bac",
"reference": "edc56ed49a2955383d59e9b7043fd3bbc26f1854", "reference": "d0bbd5a7e81b38f32504399b9199f265505b7bac",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -8667,7 +8669,7 @@
"description": "Defines an object-oriented layer for the HTTP specification", "description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-foundation/tree/v6.2.0" "source": "https://github.com/symfony/http-foundation/tree/v6.2.1"
}, },
"funding": [ "funding": [
{ {
@ -8683,20 +8685,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-21T16:03:04+00:00" "time": "2022-12-04T18:26:13+00:00"
}, },
{ {
"name": "symfony/http-kernel", "name": "symfony/http-kernel",
"version": "v6.2.0", "version": "v6.2.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-kernel.git", "url": "https://github.com/symfony/http-kernel.git",
"reference": "e008ce658dbd995b3c3ab3d9be0555ea3b11867e" "reference": "bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/e008ce658dbd995b3c3ab3d9be0555ea3b11867e", "url": "https://api.github.com/repos/symfony/http-kernel/zipball/bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404",
"reference": "e008ce658dbd995b3c3ab3d9be0555ea3b11867e", "reference": "bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -8778,7 +8780,7 @@
"description": "Provides a structured process for converting a Request into a Response", "description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-kernel/tree/v6.2.0" "source": "https://github.com/symfony/http-kernel/tree/v6.2.1"
}, },
"funding": [ "funding": [
{ {
@ -8794,20 +8796,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-30T17:37:58+00:00" "time": "2022-12-06T17:28:26+00:00"
}, },
{ {
"name": "symfony/mailer", "name": "symfony/mailer",
"version": "v6.2.0", "version": "v6.2.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/mailer.git", "url": "https://github.com/symfony/mailer.git",
"reference": "7b355fca167fa5302c77bccdfa0af4d7abc6bd8c" "reference": "a18c3dd41cfcf011e3866802e39b9ae9e541deaf"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/mailer/zipball/7b355fca167fa5302c77bccdfa0af4d7abc6bd8c", "url": "https://api.github.com/repos/symfony/mailer/zipball/a18c3dd41cfcf011e3866802e39b9ae9e541deaf",
"reference": "7b355fca167fa5302c77bccdfa0af4d7abc6bd8c", "reference": "a18c3dd41cfcf011e3866802e39b9ae9e541deaf",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -8822,7 +8824,8 @@
"conflict": { "conflict": {
"symfony/http-kernel": "<5.4", "symfony/http-kernel": "<5.4",
"symfony/messenger": "<6.2", "symfony/messenger": "<6.2",
"symfony/mime": "<6.2" "symfony/mime": "<6.2",
"symfony/twig-bridge": "<6.2.1"
}, },
"require-dev": { "require-dev": {
"symfony/console": "^5.4|^6.0", "symfony/console": "^5.4|^6.0",
@ -8856,7 +8859,7 @@
"description": "Helps sending emails", "description": "Helps sending emails",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/mailer/tree/v6.2.0" "source": "https://github.com/symfony/mailer/tree/v6.2.1"
}, },
"funding": [ "funding": [
{ {
@ -8872,7 +8875,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-28T17:18:31+00:00" "time": "2022-12-06T16:54:23+00:00"
}, },
{ {
"name": "symfony/mailgun-mailer", "name": "symfony/mailgun-mailer",
@ -10267,16 +10270,16 @@
}, },
{ {
"name": "symfony/translation-contracts", "name": "symfony/translation-contracts",
"version": "v3.1.1", "version": "v3.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/translation-contracts.git", "url": "https://github.com/symfony/translation-contracts.git",
"reference": "606be0f48e05116baef052f7f3abdb345c8e02cc" "reference": "68cce71402305a015f8c1589bfada1280dc64fe7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/translation-contracts/zipball/606be0f48e05116baef052f7f3abdb345c8e02cc", "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/68cce71402305a015f8c1589bfada1280dc64fe7",
"reference": "606be0f48e05116baef052f7f3abdb345c8e02cc", "reference": "68cce71402305a015f8c1589bfada1280dc64fe7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -10288,7 +10291,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "3.1-dev" "dev-main": "3.3-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/contracts", "name": "symfony/contracts",
@ -10328,7 +10331,7 @@
"standards" "standards"
], ],
"support": { "support": {
"source": "https://github.com/symfony/translation-contracts/tree/v3.1.1" "source": "https://github.com/symfony/translation-contracts/tree/v3.2.0"
}, },
"funding": [ "funding": [
{ {
@ -10344,7 +10347,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-06-27T17:24:16+00:00" "time": "2022-11-25T10:21:52+00:00"
}, },
{ {
"name": "symfony/uid", "name": "symfony/uid",
@ -10422,16 +10425,16 @@
}, },
{ {
"name": "symfony/var-dumper", "name": "symfony/var-dumper",
"version": "v6.2.0", "version": "v6.2.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/var-dumper.git", "url": "https://github.com/symfony/var-dumper.git",
"reference": "6228b11059d7b279be699682f164a107ba9a268d" "reference": "1e7544c8698627b908657e5276854d52ab70087a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/6228b11059d7b279be699682f164a107ba9a268d", "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1e7544c8698627b908657e5276854d52ab70087a",
"reference": "6228b11059d7b279be699682f164a107ba9a268d", "reference": "1e7544c8698627b908657e5276854d52ab70087a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -10490,7 +10493,7 @@
"dump" "dump"
], ],
"support": { "support": {
"source": "https://github.com/symfony/var-dumper/tree/v6.2.0" "source": "https://github.com/symfony/var-dumper/tree/v6.2.1"
}, },
"funding": [ "funding": [
{ {
@ -10506,20 +10509,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-28T13:41:56+00:00" "time": "2022-12-03T22:32:58+00:00"
}, },
{ {
"name": "symfony/var-exporter", "name": "symfony/var-exporter",
"version": "v6.2.0", "version": "v6.2.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/var-exporter.git", "url": "https://github.com/symfony/var-exporter.git",
"reference": "0437f26ca0c648071cc15ddacd26152cc65f4cd6" "reference": "8a3f442d48567a5447e984ce9e86875ed768304a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/var-exporter/zipball/0437f26ca0c648071cc15ddacd26152cc65f4cd6", "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8a3f442d48567a5447e984ce9e86875ed768304a",
"reference": "0437f26ca0c648071cc15ddacd26152cc65f4cd6", "reference": "8a3f442d48567a5447e984ce9e86875ed768304a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -10564,7 +10567,7 @@
"serialize" "serialize"
], ],
"support": { "support": {
"source": "https://github.com/symfony/var-exporter/tree/v6.2.0" "source": "https://github.com/symfony/var-exporter/tree/v6.2.1"
}, },
"funding": [ "funding": [
{ {
@ -10580,7 +10583,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-25T08:33:31+00:00" "time": "2022-12-03T22:32:58+00:00"
}, },
{ {
"name": "tightenco/collect", "name": "tightenco/collect",
@ -10909,16 +10912,16 @@
"packages-dev": [ "packages-dev": [
{ {
"name": "brianium/paratest", "name": "brianium/paratest",
"version": "v6.6.5", "version": "v6.7.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/paratestphp/paratest.git", "url": "https://github.com/paratestphp/paratest.git",
"reference": "31fd5d69b41725f383c9a083831eefcc7ecd9061" "reference": "1db5cc12deaf5f32c41ee0713b79021ad418f8fe"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/paratestphp/paratest/zipball/31fd5d69b41725f383c9a083831eefcc7ecd9061", "url": "https://api.github.com/repos/paratestphp/paratest/zipball/1db5cc12deaf5f32c41ee0713b79021ad418f8fe",
"reference": "31fd5d69b41725f383c9a083831eefcc7ecd9061", "reference": "1db5cc12deaf5f32c41ee0713b79021ad418f8fe",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -10926,25 +10929,25 @@
"ext-pcre": "*", "ext-pcre": "*",
"ext-reflection": "*", "ext-reflection": "*",
"ext-simplexml": "*", "ext-simplexml": "*",
"fidry/cpu-core-counter": "^0.4.0",
"jean85/pretty-package-versions": "^2.0.5", "jean85/pretty-package-versions": "^2.0.5",
"php": "^7.3 || ^8.0", "php": "^7.3 || ^8.0",
"phpunit/php-code-coverage": "^9.2.17", "phpunit/php-code-coverage": "^9.2.19",
"phpunit/php-file-iterator": "^3.0.6", "phpunit/php-file-iterator": "^3.0.6",
"phpunit/php-timer": "^5.0.3", "phpunit/php-timer": "^5.0.3",
"phpunit/phpunit": "^9.5.24", "phpunit/phpunit": "^9.5.27",
"sebastian/environment": "^5.1.4", "sebastian/environment": "^5.1.4",
"symfony/console": "^5.4.12 || ^6.1.4", "symfony/console": "^5.4.16 || ^6.2.1",
"symfony/process": "^5.4.11 || ^6.1.3" "symfony/process": "^5.4.11 || ^6.2"
}, },
"require-dev": { "require-dev": {
"doctrine/coding-standard": "^10.0.0", "doctrine/coding-standard": "^10.0.0",
"ext-pcov": "*", "ext-pcov": "*",
"ext-posix": "*", "ext-posix": "*",
"infection/infection": "^0.26.14", "infection/infection": "^0.26.16",
"malukenho/mcbumpface": "^1.1.5",
"squizlabs/php_codesniffer": "^3.7.1", "squizlabs/php_codesniffer": "^3.7.1",
"symfony/filesystem": "^5.4.12 || ^6.1.4", "symfony/filesystem": "^5.4.13 || ^6.2",
"vimeo/psalm": "^4.27.0" "vimeo/psalm": "^5.1"
}, },
"bin": [ "bin": [
"bin/paratest", "bin/paratest",
@ -10985,7 +10988,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/paratestphp/paratest/issues", "issues": "https://github.com/paratestphp/paratest/issues",
"source": "https://github.com/paratestphp/paratest/tree/v6.6.5" "source": "https://github.com/paratestphp/paratest/tree/v6.7.0"
}, },
"funding": [ "funding": [
{ {
@ -10997,7 +11000,7 @@
"type": "paypal" "type": "paypal"
} }
], ],
"time": "2022-10-28T12:22:26+00:00" "time": "2022-12-12T07:32:08+00:00"
}, },
{ {
"name": "doctrine/instantiator", "name": "doctrine/instantiator",
@ -11136,6 +11139,67 @@
}, },
"time": "2022-07-20T13:12:54+00:00" "time": "2022-07-20T13:12:54+00:00"
}, },
{
"name": "fidry/cpu-core-counter",
"version": "0.4.0",
"source": {
"type": "git",
"url": "https://github.com/theofidry/cpu-core-counter.git",
"reference": "666cb04a02f2801f3b19955fc23c824f9018bf64"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/666cb04a02f2801f3b19955fc23c824f9018bf64",
"reference": "666cb04a02f2801f3b19955fc23c824f9018bf64",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
"fidry/makefile": "^0.2.0",
"phpstan/extension-installer": "^1.2.0",
"phpstan/phpstan": "^1.9.2",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.2.2",
"phpstan/phpstan-strict-rules": "^1.4.4",
"phpunit/phpunit": "^9.5.26 || ^8.5.31",
"theofidry/php-cs-fixer-config": "^1.0",
"webmozarts/strict-phpunit": "^7.5"
},
"type": "library",
"autoload": {
"psr-4": {
"Fidry\\CpuCoreCounter\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Théo FIDRY",
"email": "theo.fidry@gmail.com"
}
],
"description": "Tiny utility to get the number of CPU cores.",
"keywords": [
"CPU",
"core"
],
"support": {
"issues": "https://github.com/theofidry/cpu-core-counter/issues",
"source": "https://github.com/theofidry/cpu-core-counter/tree/0.4.0"
},
"funding": [
{
"url": "https://github.com/theofidry",
"type": "github"
}
],
"time": "2022-12-10T21:26:31+00:00"
},
{ {
"name": "filp/whoops", "name": "filp/whoops",
"version": "2.14.6", "version": "2.14.6",
@ -11319,16 +11383,16 @@
}, },
{ {
"name": "laravel/telescope", "name": "laravel/telescope",
"version": "v4.9.6", "version": "v4.10.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/telescope.git", "url": "https://github.com/laravel/telescope.git",
"reference": "017eaf1b6d19392d196adcb4151bdf6d59612d66" "reference": "e4b16dd22db3e8a8b52e3a03343b11ffcee2aaaa"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/telescope/zipball/017eaf1b6d19392d196adcb4151bdf6d59612d66", "url": "https://api.github.com/repos/laravel/telescope/zipball/e4b16dd22db3e8a8b52e3a03343b11ffcee2aaaa",
"reference": "017eaf1b6d19392d196adcb4151bdf6d59612d66", "reference": "e4b16dd22db3e8a8b52e3a03343b11ffcee2aaaa",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -11381,9 +11445,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/laravel/telescope/issues", "issues": "https://github.com/laravel/telescope/issues",
"source": "https://github.com/laravel/telescope/tree/v4.9.6" "source": "https://github.com/laravel/telescope/tree/v4.10.0"
}, },
"time": "2022-11-08T07:00:35+00:00" "time": "2022-12-05T15:34:49+00:00"
}, },
{ {
"name": "mockery/mockery", "name": "mockery/mockery",
@ -12035,16 +12099,16 @@
}, },
{ {
"name": "phpunit/phpunit", "name": "phpunit/phpunit",
"version": "9.5.26", "version": "9.5.27",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git", "url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "851867efcbb6a1b992ec515c71cdcf20d895e9d2" "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/851867efcbb6a1b992ec515c71cdcf20d895e9d2", "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a2bc7ffdca99f92d959b3f2270529334030bba38",
"reference": "851867efcbb6a1b992ec515c71cdcf20d895e9d2", "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -12117,7 +12181,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues", "issues": "https://github.com/sebastianbergmann/phpunit/issues",
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.26" "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.27"
}, },
"funding": [ "funding": [
{ {
@ -12133,7 +12197,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-10-28T06:00:21+00:00" "time": "2022-12-09T07:31:23+00:00"
}, },
{ {
"name": "sebastian/cli-parser", "name": "sebastian/cli-parser",

72
package-lock.json generated
View file

@ -2027,9 +2027,9 @@
"integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA=="
}, },
"node_modules/@types/node": { "node_modules/@types/node": {
"version": "18.11.11", "version": "18.11.13",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.11.tgz", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.13.tgz",
"integrity": "sha512-KJ021B1nlQUBLopzZmPBVuGU9un7WJd/W4ya7Ih02B4Uwky5Nja0yGYav2EfYIk0RR2Q9oVhf60S2XR1BCWJ2g==" "integrity": "sha512-IASpMGVcWpUsx5xBOrxMj7Bl8lqfuTY7FKAnPmu5cHkfQVWF8GulWS1jbRqA934qZL35xh5xN/+Xe/i26Bod4w=="
}, },
"node_modules/@types/parse-json": { "node_modules/@types/parse-json": {
"version": "4.0.0", "version": "4.0.0",
@ -3004,9 +3004,9 @@
} }
}, },
"node_modules/caniuse-lite": { "node_modules/caniuse-lite": {
"version": "1.0.30001436", "version": "1.0.30001439",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001436.tgz", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz",
"integrity": "sha512-ZmWkKsnC2ifEPoWUvSAIGyOYwT+keAaaWPHiQ9DfMqS1t6tfuyFYoWR78TeZtznkEQ64+vGXH9cZrElwR2Mrxg==", "integrity": "sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==",
"funding": [ "funding": [
{ {
"type": "opencollective", "type": "opencollective",
@ -4815,9 +4815,9 @@
} }
}, },
"node_modules/hls.js": { "node_modules/hls.js": {
"version": "1.2.8", "version": "1.2.9",
"resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.2.8.tgz", "resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.2.9.tgz",
"integrity": "sha512-vH4b0ATbMEQz7776YBt6kKlRlvuT7RiFfliuxzn6nBlksrEl5HfQxN1Fn5VUNVVt8rws1rKWzpWwXANgCm03rw==" "integrity": "sha512-SPjm8ix0xe6cYzwDvdVGh2QvQPDkCYrGWpZu6bRaKNNVyEGWM9uF0pooh/Lqj/g8QBQgPFEx1vHzW8SyMY9rqg=="
}, },
"node_modules/hmac-drbg": { "node_modules/hmac-drbg": {
"version": "1.0.1", "version": "1.0.1",
@ -6584,9 +6584,9 @@
} }
}, },
"node_modules/postcss": { "node_modules/postcss": {
"version": "8.4.19", "version": "8.4.20",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.19.tgz", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.20.tgz",
"integrity": "sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==", "integrity": "sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==",
"funding": [ "funding": [
{ {
"type": "opencollective", "type": "opencollective",
@ -7136,9 +7136,9 @@
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
}, },
"node_modules/prettier": { "node_modules/prettier": {
"version": "2.8.0", "version": "2.8.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.0.tgz", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz",
"integrity": "sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==", "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==",
"dev": true, "dev": true,
"optional": true, "optional": true,
"bin": { "bin": {
@ -7659,9 +7659,9 @@
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
}, },
"node_modules/sass": { "node_modules/sass": {
"version": "1.56.1", "version": "1.56.2",
"resolved": "https://registry.npmjs.org/sass/-/sass-1.56.1.tgz", "resolved": "https://registry.npmjs.org/sass/-/sass-1.56.2.tgz",
"integrity": "sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==", "integrity": "sha512-ciEJhnyCRwzlBCB+h5cCPM6ie/6f8HrhZMQOf5vlU60Y1bI1rx5Zb0vlDZvaycHsg/MqFfF1Eq2eokAa32iw8w==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"chokidar": ">=3.0.0 <4.0.0", "chokidar": ">=3.0.0 <4.0.0",
@ -10804,9 +10804,9 @@
"integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA=="
}, },
"@types/node": { "@types/node": {
"version": "18.11.11", "version": "18.11.13",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.11.tgz", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.13.tgz",
"integrity": "sha512-KJ021B1nlQUBLopzZmPBVuGU9un7WJd/W4ya7Ih02B4Uwky5Nja0yGYav2EfYIk0RR2Q9oVhf60S2XR1BCWJ2g==" "integrity": "sha512-IASpMGVcWpUsx5xBOrxMj7Bl8lqfuTY7FKAnPmu5cHkfQVWF8GulWS1jbRqA934qZL35xh5xN/+Xe/i26Bod4w=="
}, },
"@types/parse-json": { "@types/parse-json": {
"version": "4.0.0", "version": "4.0.0",
@ -11607,9 +11607,9 @@
} }
}, },
"caniuse-lite": { "caniuse-lite": {
"version": "1.0.30001436", "version": "1.0.30001439",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001436.tgz", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz",
"integrity": "sha512-ZmWkKsnC2ifEPoWUvSAIGyOYwT+keAaaWPHiQ9DfMqS1t6tfuyFYoWR78TeZtznkEQ64+vGXH9cZrElwR2Mrxg==" "integrity": "sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A=="
}, },
"chalk": { "chalk": {
"version": "4.1.2", "version": "4.1.2",
@ -12993,9 +12993,9 @@
"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="
}, },
"hls.js": { "hls.js": {
"version": "1.2.8", "version": "1.2.9",
"resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.2.8.tgz", "resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.2.9.tgz",
"integrity": "sha512-vH4b0ATbMEQz7776YBt6kKlRlvuT7RiFfliuxzn6nBlksrEl5HfQxN1Fn5VUNVVt8rws1rKWzpWwXANgCm03rw==" "integrity": "sha512-SPjm8ix0xe6cYzwDvdVGh2QvQPDkCYrGWpZu6bRaKNNVyEGWM9uF0pooh/Lqj/g8QBQgPFEx1vHzW8SyMY9rqg=="
}, },
"hmac-drbg": { "hmac-drbg": {
"version": "1.0.1", "version": "1.0.1",
@ -14300,9 +14300,9 @@
"requires": {} "requires": {}
}, },
"postcss": { "postcss": {
"version": "8.4.19", "version": "8.4.20",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.19.tgz", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.20.tgz",
"integrity": "sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==", "integrity": "sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==",
"requires": { "requires": {
"nanoid": "^3.3.4", "nanoid": "^3.3.4",
"picocolors": "^1.0.0", "picocolors": "^1.0.0",
@ -14622,9 +14622,9 @@
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
}, },
"prettier": { "prettier": {
"version": "2.8.0", "version": "2.8.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.0.tgz", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz",
"integrity": "sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==", "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==",
"dev": true, "dev": true,
"optional": true "optional": true
}, },
@ -15013,9 +15013,9 @@
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
}, },
"sass": { "sass": {
"version": "1.56.1", "version": "1.56.2",
"resolved": "https://registry.npmjs.org/sass/-/sass-1.56.1.tgz", "resolved": "https://registry.npmjs.org/sass/-/sass-1.56.2.tgz",
"integrity": "sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==", "integrity": "sha512-ciEJhnyCRwzlBCB+h5cCPM6ie/6f8HrhZMQOf5vlU60Y1bI1rx5Zb0vlDZvaycHsg/MqFfF1Eq2eokAa32iw8w==",
"dev": true, "dev": true,
"requires": { "requires": {
"chokidar": ">=3.0.0 <4.0.0", "chokidar": ">=3.0.0 <4.0.0",