diff --git a/.env.example b/.env.example
index eb423aaa..a1c38110 100644
--- a/.env.example
+++ b/.env.example
@@ -78,6 +78,8 @@ SESSION_SAME_SITE=strict
LOG_SLACK_WEBHOOK_URL=
+BRRR_WEBHOOK_URL=
+
FLARE_KEY=
IGNITION_OPEN_AI_KEY=
diff --git a/app/Console/Commands/ReprocessMediaImages.php b/app/Console/Commands/ReprocessMediaImages.php
index c5e22d1b..b6c86c47 100644
--- a/app/Console/Commands/ReprocessMediaImages.php
+++ b/app/Console/Commands/ReprocessMediaImages.php
@@ -6,9 +6,9 @@ namespace App\Console\Commands;
use App\Models\Media;
use Illuminate\Console\Command;
+use Illuminate\Image\ImageException;
+use Illuminate\Support\Facades\Image;
use Illuminate\Support\Facades\Storage;
-use Intervention\Image\Exceptions\DecoderException;
-use Intervention\Image\ImageManager;
class ReprocessMediaImages extends Command
{
@@ -16,7 +16,7 @@ class ReprocessMediaImages extends Command
protected $description = 'Regenerate medium and small image variants using correct aspect-ratio scaling';
- public function handle(ImageManager $manager): void
+ public function handle(): void
{
$media = Media::where('type', 'image')
->whereNotNull('image_widths')
@@ -44,10 +44,10 @@ class ReprocessMediaImages extends Command
$this->info("Processing: {$path}");
+ $image = Image::fromStorage($path, 'public');
try {
- $file = Storage::disk('public')->get($path);
- $image = $manager->read($file);
- } catch (DecoderException) {
+ $image->width();
+ } catch (ImageException) {
$this->warn(' Could not decode image, skipping.');
continue;
@@ -57,11 +57,8 @@ class ReprocessMediaImages extends Command
$extension = array_pop($filenameParts);
$basename = trim(implode('.', $filenameParts), '.');
- $medium = $image->scale(width: 1000);
- Storage::disk('public')->put($basename.'-medium.'.$extension, (string) $medium->encode());
-
- $small = $image->scale(width: 500);
- Storage::disk('public')->put($basename.'-small.'.$extension, (string) $small->encode());
+ Storage::disk('public')->put($basename.'-medium.'.$extension, $image->scale(width: 1000)->toBytes());
+ Storage::disk('public')->put($basename.'-small.'.$extension, $image->scale(width: 500)->toBytes());
$this->info(' Done.');
}
diff --git a/app/Http/Controllers/AboutPageController.php b/app/Http/Controllers/AboutPageController.php
new file mode 100644
index 00000000..d174e550
--- /dev/null
+++ b/app/Http/Controllers/AboutPageController.php
@@ -0,0 +1,16 @@
+ About::first()?->content,
+ ]);
+ }
+}
diff --git a/app/Http/Controllers/Admin/AboutController.php b/app/Http/Controllers/Admin/AboutController.php
new file mode 100644
index 00000000..cc5be0ad
--- /dev/null
+++ b/app/Http/Controllers/Admin/AboutController.php
@@ -0,0 +1,32 @@
+ $about,
+ ]);
+ }
+
+ public function update(Request $request): RedirectResponse
+ {
+ $about = About::firstOrNew();
+ $about->content = $request->input('content');
+ $about->save();
+
+ return redirect()->route('admin.about.show');
+ }
+}
diff --git a/app/Http/Controllers/Admin/ContactsController.php b/app/Http/Controllers/Admin/ContactsController.php
index 17e4a8a7..211f9fa8 100644
--- a/app/Http/Controllers/Admin/ContactsController.php
+++ b/app/Http/Controllers/Admin/ContactsController.php
@@ -6,11 +6,11 @@ namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use App\Models\Contact;
-use GuzzleHttp\Client;
-use GuzzleHttp\Exception\BadResponseException;
use Illuminate\Filesystem\Filesystem;
+use Illuminate\Http\Client\RequestException;
use Illuminate\Http\RedirectResponse;
use Illuminate\Support\Arr;
+use Illuminate\Support\Facades\Http;
use Illuminate\View\View;
class ContactsController extends Controller
@@ -113,14 +113,13 @@ class ContactsController extends Controller
$avatar = null;
$contact = Contact::findOrFail($contactId);
if ($contact->homepage !== null && mb_strlen($contact->homepage) !== 0) {
- $client = resolve(Client::class);
try {
- $response = $client->get($contact->homepage);
- } catch (BadResponseException $e) {
+ $response = Http::throw()->get($contact->homepage);
+ } catch (RequestException $e) {
return redirect('/admin/contacts/'.$contactId.'/edit')
->with('error', 'Bad resposne from contact’s homepage');
}
- $mf2 = \Mf2\parse((string) $response->getBody(), $contact->homepage);
+ $mf2 = \Mf2\parse($response->body(), $contact->homepage);
foreach ($mf2['items'] as $microformat) {
if (Arr::get($microformat, 'type.0') === 'h-card') {
$avatarURL = Arr::get($microformat, 'properties.photo.0.value');
@@ -129,8 +128,8 @@ class ContactsController extends Controller
}
if ($avatarURL !== null) {
try {
- $avatar = $client->get($avatarURL);
- } catch (BadResponseException $e) {
+ $avatar = Http::throw()->get($avatarURL);
+ } catch (RequestException $e) {
return redirect('/admin/contacts/'.$contactId.'/edit')
->with('error', 'Unable to download avatar');
}
@@ -141,7 +140,7 @@ class ContactsController extends Controller
if ($filesystem->isDirectory($directory) === false) {
$filesystem->makeDirectory($directory);
}
- $filesystem->put($directory.'/image', $avatar->getBody());
+ $filesystem->put($directory.'/image', $avatar->body());
return view('admin.contacts.getavatarsuccess', [
'homepage' => parse_url($contact->homepage, PHP_URL_HOST),
diff --git a/app/Http/Controllers/Admin/PasskeysController.php b/app/Http/Controllers/Admin/PasskeysController.php
index 8012f9b8..d9c18f5b 100644
--- a/app/Http/Controllers/Admin/PasskeysController.php
+++ b/app/Http/Controllers/Admin/PasskeysController.php
@@ -254,7 +254,7 @@ class PasskeysController extends Controller
], 400);
}
- $passkey = Passkey::firstWhere('passkey_id', $publicKeyCredential->id);
+ $passkey = Passkey::firstWhere('passkey_id', Base64UrlSafe::encodeUnpadded($publicKeyCredential->rawId));
if (! $passkey) {
return response()->json([
'success' => false,
diff --git a/app/Http/Controllers/Admin/SettingsController.php b/app/Http/Controllers/Admin/SettingsController.php
new file mode 100644
index 00000000..99d283bb
--- /dev/null
+++ b/app/Http/Controllers/Admin/SettingsController.php
@@ -0,0 +1,32 @@
+ $settings,
+ ]);
+ }
+
+ public function update(Request $request): RedirectResponse
+ {
+ $settings = Setting::firstOrNew();
+ $settings->winter_effect_enabled = $request->boolean('winter_effect_enabled');
+ $settings->save();
+
+ return redirect()->route('admin.settings.show');
+ }
+}
diff --git a/app/Http/Controllers/Admin/TokensController.php b/app/Http/Controllers/Admin/TokensController.php
new file mode 100644
index 00000000..02b9660c
--- /dev/null
+++ b/app/Http/Controllers/Admin/TokensController.php
@@ -0,0 +1,65 @@
+get();
+
+ return view('admin.tokens.index', compact('tokens'));
+ }
+
+ /**
+ * Show the form to manually generate a new Micropub token.
+ *
+ * This is for clients (e.g. iA Writer) that don't support the IndieAuth
+ * PKCE flow and instead expect to be given a token directly.
+ */
+ public function create(): View
+ {
+ return view('admin.tokens.create');
+ }
+
+ /**
+ * Manually generate a new Micropub token.
+ */
+ public function store(Request $request): RedirectResponse
+ {
+ $validated = $request->validate([
+ 'client_id' => 'required|string',
+ 'scope' => 'required|array|min:1',
+ ]);
+
+ $token = resolve(TokenService::class)->getNewToken([
+ 'me' => config('app.url'),
+ 'client_id' => $validated['client_id'],
+ 'scope' => implode(' ', $validated['scope']),
+ ]);
+
+ return redirect('/admin/tokens')->with('new_token', $token);
+ }
+
+ /**
+ * Revoke a Micropub token.
+ */
+ public function revoke(MicropubToken $token): RedirectResponse
+ {
+ $token->revoke();
+
+ return redirect('/admin/tokens');
+ }
+}
diff --git a/app/Http/Controllers/FeedsController.php b/app/Http/Controllers/FeedsController.php
index a30c89dc..9aeb4abb 100644
--- a/app/Http/Controllers/FeedsController.php
+++ b/app/Http/Controllers/FeedsController.php
@@ -7,66 +7,13 @@ namespace App\Http\Controllers;
use App\Models\Article;
use App\Models\Note;
use Illuminate\Http\JsonResponse;
-use Illuminate\Http\Response;
class FeedsController extends Controller
{
- /**
- * Returns the blog RSS feed.
- */
- public function blogRss(): Response
- {
- $articles = Article::where('published', '1')->latest('updated_at')->take(20)->get();
- $buildDate = $articles->first()->updated_at->toRssString();
-
- return response()
- ->view('articles.rss', compact('articles', 'buildDate'))
- ->header('Content-Type', 'application/rss+xml; charset=utf-8');
- }
-
- /**
- * Returns the blog Atom feed.
- */
- public function blogAtom(): Response
- {
- $articles = Article::where('published', '1')->latest('updated_at')->take(20)->get();
-
- return response()
- ->view('articles.atom', compact('articles'))
- ->header('Content-Type', 'application/atom+xml; charset=utf-8');
- }
-
- /**
- * Returns the notes RSS feed.
- */
- public function notesRss(): Response
- {
- $notes = Note::latest()->take(20)->get();
- $buildDate = $notes->first()->updated_at->toRssString();
-
- return response()
- ->view('notes.rss', compact('notes', 'buildDate'))
- ->header('Content-Type', 'application/rss+xml; charset=utf-8');
- }
-
- /**
- * Returns the notes Atom feed.
- */
- public function notesAtom(): Response
- {
- $notes = Note::latest()->take(20)->get();
-
- return response()
- ->view('notes.atom', compact('notes'))
- ->header('Content-Type', 'application/atom+xml; charset=utf-8');
- }
-
- /** @todo sort out return type for json responses */
-
/**
* Returns the blog JSON feed.
*/
- public function blogJson(): array
+ public function blogJson(): JsonResponse
{
$articles = Article::where('published', '1')->latest('updated_at')->take(20)->get();
$data = [
@@ -94,13 +41,15 @@ class FeedsController extends Controller
];
}
- return $data;
+ return response()->json($data, 200, [
+ 'Content-Type' => 'application/feed+json',
+ ]);
}
/**
* Returns the notes JSON feed.
*/
- public function notesJson(): array
+ public function notesJson(): JsonResponse
{
$notes = Note::latest()->with('media', 'place', 'tags')->take(20)->get();
$data = [
@@ -130,7 +79,9 @@ class FeedsController extends Controller
}
}
- return $data;
+ return response()->json($data, 200, [
+ 'Content-Type' => 'application/feed+json',
+ ]);
}
/**
diff --git a/app/Http/Controllers/IndieAuthController.php b/app/Http/Controllers/IndieAuthController.php
index 45b488da..a795bce8 100644
--- a/app/Http/Controllers/IndieAuthController.php
+++ b/app/Http/Controllers/IndieAuthController.php
@@ -4,14 +4,14 @@ declare(strict_types=1);
namespace App\Http\Controllers;
+use App\Models\MicropubToken;
use App\Services\TokenService;
-use Exception;
-use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Uri;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Cache;
+use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Validator;
use Illuminate\View\View;
use Random\RandomException;
@@ -25,9 +25,10 @@ class IndieAuthController extends Controller
'issuer' => config('app.url'),
'authorization_endpoint' => route('indieauth.start'),
'token_endpoint' => route('indieauth.token'),
+ 'revocation_endpoint' => route('indieauth.revocation'),
+ 'introspection_endpoint' => route('indieauth.introspection'),
+ 'introspection_endpoint_auth_methods_supported' => ['Bearer'],
'code_challenge_methods_supported' => ['S256'],
- // 'introspection_endpoint' => route('indieauth.introspection'),
- // 'introspection_endpoint_auth_methods_supported' => ['none'],
]);
}
@@ -179,6 +180,50 @@ class IndieAuthController extends Controller
]);
}
+ /**
+ * Process a POST request to the IndieAuth revocation endpoint (RFC 7009).
+ *
+ * Per spec this always returns HTTP 200, whether the token was revoked,
+ * unknown, or already revoked, so callers can't probe token validity.
+ */
+ public function processRevocationRequest(Request $request): JsonResponse
+ {
+ MicropubToken::findActive($request->get('token'))?->revoke();
+
+ return response()->json([], 200);
+ }
+
+ /**
+ * Process a POST request to the IndieAuth token introspection endpoint
+ * (RFC 7662, extended by IndieAuth to require the `me` property).
+ *
+ * The caller must itself present a currently-active token as a Bearer
+ * credential to use this endpoint, per spec ("MUST also require some
+ * form of authorization"). Per spec, an inactive token being introspected
+ * still gets a 200 response containing only `active: false` - no other
+ * information about why it's inactive is given.
+ */
+ public function processIntrospectionRequest(Request $request): JsonResponse
+ {
+ if (! MicropubToken::findActive($request->bearerToken())) {
+ return response()->json([], 401);
+ }
+
+ $token = MicropubToken::findActive($request->get('token'));
+
+ if (! $token) {
+ return response()->json(['active' => false]);
+ }
+
+ return response()->json([
+ 'active' => true,
+ 'me' => $token->me,
+ 'client_id' => $token->client_id,
+ 'scope' => $token->scope,
+ 'iat' => $token->created_at->timestamp,
+ ]);
+ }
+
protected function isValidRedirectUri(string $clientId, string $redirectUri): bool
{
// If client_id is not a valid URL, then it's not valid
@@ -199,15 +244,13 @@ class IndieAuthController extends Controller
}
// Otherwise we need to check the redirect_uri is in the client_id's redirect_uris
- $guzzle = resolve(Client::class);
-
try {
- $clientInfo = $guzzle->get($clientId);
- } catch (Exception) {
+ $clientInfo = Http::throw()->get($clientId);
+ } catch (\Throwable) {
return false;
}
- $clientInfoParsed = \Mf2\parse($clientInfo->getBody()->getContents(), $clientId);
+ $clientInfoParsed = \Mf2\parse($clientInfo->body(), $clientId);
$redirectUris = $clientInfoParsed['rels']['redirect_uri'] ?? [];
diff --git a/app/Http/Controllers/MicropubController.php b/app/Http/Controllers/MicropubController.php
index c6008a9c..72242150 100644
--- a/app/Http/Controllers/MicropubController.php
+++ b/app/Http/Controllers/MicropubController.php
@@ -15,7 +15,6 @@ use App\Services\Micropub\MicropubHandlerRegistry;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
-use Lcobucci\JWT\Token;
class MicropubController extends Controller
{
@@ -71,7 +70,9 @@ class MicropubController extends Controller
'error' => 'invalid_request',
'error_description' => 'No known note with given ID',
], 404);
- } catch (MicropubUnsupportedModelException) {
+ } catch (MicropubUnsupportedModelException $e) {
+ report($e);
+
return response()->json([
'error' => 'invalid',
'error_description' => 'This implementation currently only supports the updating of notes',
@@ -81,12 +82,16 @@ class MicropubController extends Controller
'error' => 'invalid_request',
'error_description' => $e->getMessage(),
], 400);
- } catch (MicropubHandlerException) {
+ } catch (MicropubHandlerException $e) {
+ report($e);
+
return response()->json([
'error' => 'unsupported_operation',
'error_description' => 'The request could not be processed by this server',
], 500);
- } catch (\Exception $e) {
+ } catch (\Throwable $e) {
+ report($e);
+
return response()->json([
'error' => 'server_error',
'error_description' => 'An error occurred processing the request',
@@ -135,7 +140,7 @@ class MicropubController extends Controller
}
// the default response is just to return the token data
- /** @var Token $tokenData */
+ /** @var array $tokenData */
$tokenData = $request->input('token_data');
return response()->json([
diff --git a/app/Http/Controllers/MicropubMediaController.php b/app/Http/Controllers/MicropubMediaController.php
index 1cca74b3..d9f8ea32 100644
--- a/app/Http/Controllers/MicropubMediaController.php
+++ b/app/Http/Controllers/MicropubMediaController.php
@@ -13,9 +13,10 @@ use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Http\UploadedFile;
+use Illuminate\Image\ImageException;
use Illuminate\Support\Carbon;
+use Illuminate\Support\Facades\Image;
use Illuminate\Support\Facades\Storage;
-use Intervention\Image\ImageManager;
use Ramsey\Uuid\Uuid;
class MicropubMediaController extends Controller
@@ -25,9 +26,7 @@ class MicropubMediaController extends Controller
$tokenData = $request->input('token_data');
$scopes = $tokenData['scope'];
- if (is_string($scopes)) {
- $scopes = explode(' ', $scopes);
- }
+ $scopes = explode(' ', $scopes);
if (! in_array('create', $scopes, true)) {
return (new MicropubResponses)->insufficientScopeResponse();
}
@@ -83,9 +82,7 @@ class MicropubMediaController extends Controller
$tokenData = $request->input('token_data');
$scopes = $tokenData['scope'];
- if (is_string($scopes)) {
- $scopes = explode(' ', $scopes);
- }
+ $scopes = explode(' ', $scopes);
if (! in_array('create', $scopes, true)) {
return (new MicropubResponses)->insufficientScopeResponse();
}
@@ -111,12 +108,9 @@ class MicropubMediaController extends Controller
$filename = Storage::disk('local')->putFile('media', $file);
- /** @var ImageManager $manager */
- $manager = resolve(ImageManager::class);
try {
- $image = $manager->read($request->file('file'));
- $width = $image->width();
- } catch (Exception) {
+ $width = Image::fromUpload($request->file('file'))->width();
+ } catch (ImageException) {
// not an image
$width = null;
}
diff --git a/app/Http/Middleware/LinkHeadersMiddleware.php b/app/Http/Middleware/LinkHeadersMiddleware.php
index b9e55139..e2810f87 100644
--- a/app/Http/Middleware/LinkHeadersMiddleware.php
+++ b/app/Http/Middleware/LinkHeadersMiddleware.php
@@ -17,6 +17,8 @@ class LinkHeadersMiddleware
$response->header('Link', '<'.route('indieauth.metadata').'>; rel="indieauth-metadata"', false);
$response->header('Link', '<'.route('indieauth.start').'>; rel="authorization_endpoint"', false);
$response->header('Link', '<'.route('indieauth.token').'>; rel="token_endpoint"', false);
+ $response->header('Link', '<'.route('indieauth.revocation').'>; rel="revocation_endpoint"', false);
+ $response->header('Link', '<'.route('indieauth.introspection').'>; rel="introspection_endpoint"', false);
$response->header('Link', '<'.route('micropub-endpoint').'>; rel="micropub"', false);
$response->header('Link', '<'.route('webmention-endpoint').'>; rel="webmention"', false);
diff --git a/app/Http/Middleware/VerifyMicropubToken.php b/app/Http/Middleware/VerifyMicropubToken.php
index 33d2cb12..530995ae 100644
--- a/app/Http/Middleware/VerifyMicropubToken.php
+++ b/app/Http/Middleware/VerifyMicropubToken.php
@@ -5,13 +5,9 @@ declare(strict_types=1);
namespace App\Http\Middleware;
use App\Http\Responses\MicropubResponses;
+use App\Models\MicropubToken;
use Closure;
use Illuminate\Http\Request;
-use Lcobucci\JWT\Configuration;
-use Lcobucci\JWT\Encoding\CannotDecodeContent;
-use Lcobucci\JWT\Token;
-use Lcobucci\JWT\Token\InvalidTokenStructure;
-use Lcobucci\JWT\Validation\RequiredConstraintsViolated;
use Symfony\Component\HttpFoundation\Response;
class VerifyMicropubToken
@@ -39,15 +35,15 @@ class VerifyMicropubToken
], 401);
}
- try {
- $tokenData = $this->validateToken($rawToken);
- } catch (RequiredConstraintsViolated|InvalidTokenStructure|CannotDecodeContent) {
+ $token = MicropubToken::findActive($rawToken);
+
+ if (! $token) {
$micropubResponses = new MicropubResponses;
return $micropubResponses->invalidTokenResponse();
}
- if ($tokenData->claims()->has('scope') === false) {
+ if ($token->scope === '') {
$micropubResponses = new MicropubResponses;
return $micropubResponses->tokenHasNoScopeResponse();
@@ -56,26 +52,10 @@ class VerifyMicropubToken
return $next($request->merge([
'access_token' => $rawToken,
'token_data' => [
- 'me' => $tokenData->claims()->get('me'),
- 'scope' => $tokenData->claims()->get('scope'),
- 'client_id' => $tokenData->claims()->get('client_id'),
+ 'me' => $token->me,
+ 'scope' => $token->scope,
+ 'client_id' => $token->client_id,
],
]));
}
-
- /**
- * Check the token signature is valid.
- */
- private function validateToken(string $bearerToken): Token
- {
- $config = resolve(Configuration::class);
-
- $token = $config->parser()->parse($bearerToken);
-
- $constraints = $config->validationConstraints();
-
- $config->validator()->assert($token, ...$constraints);
-
- return $token;
- }
}
diff --git a/app/Jobs/DownloadWebMention.php b/app/Jobs/DownloadWebMention.php
index 341c35c8..0cb073d5 100644
--- a/app/Jobs/DownloadWebMention.php
+++ b/app/Jobs/DownloadWebMention.php
@@ -4,14 +4,14 @@ declare(strict_types=1);
namespace App\Jobs;
-use GuzzleHttp\Client;
-use GuzzleHttp\Exception\GuzzleException;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Filesystem\FileNotFoundException;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\FileSystem\FileSystem;
+use Illuminate\Http\Client\RequestException;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
+use Illuminate\Support\Facades\Http;
class DownloadWebMention implements ShouldQueue
{
@@ -29,15 +29,15 @@ class DownloadWebMention implements ShouldQueue
/**
* Execute the job.
*
- * @throws GuzzleException
+ * @throws RequestException
* @throws FileNotFoundException
*/
- public function handle(Client $guzzle): void
+ public function handle(): void
{
- $response = $guzzle->request('GET', $this->source);
- // 4XX and 5XX responses should get Guzzle to throw an exception,
- // Laravel should catch and retry these automatically.
- if ($response->getStatusCode() === 200) {
+ // 4XX and 5XX responses should throw so Laravel can catch and
+ // retry these automatically.
+ $response = Http::throw()->get($this->source);
+ if ($response->status() === 200) {
$filesystem = new FileSystem;
$filename = storage_path('HTML').'/'.$this->createFilenameFromURL($this->source);
// backup file first
@@ -56,7 +56,7 @@ class DownloadWebMention implements ShouldQueue
// save new HTML
$filesystem->put(
$filename,
- (string) $response->getBody()
+ $response->body()
);
// remove backup if the same
if ($filesystem->exists($filenameBackup)) {
diff --git a/app/Jobs/NotifyBrrrOfWebMention.php b/app/Jobs/NotifyBrrrOfWebMention.php
new file mode 100644
index 00000000..3273b7d6
--- /dev/null
+++ b/app/Jobs/NotifyBrrrOfWebMention.php
@@ -0,0 +1,56 @@
+ $this->title(),
+ 'message' => "From {$this->webMention->source}",
+ 'open_url' => $this->webMention->target,
+ ]);
+ }
+
+ /**
+ * Build a notification title based on the webmention type.
+ */
+ private function title(): string
+ {
+ return match ($this->webMention->type) {
+ 'in-reply-to' => 'New reply',
+ 'like-of' => 'New like',
+ 'repost-of' => 'New repost',
+ default => 'New webmention',
+ };
+ }
+}
diff --git a/app/Jobs/ProcessLike.php b/app/Jobs/ProcessLike.php
index 49302885..3ed065c1 100644
--- a/app/Jobs/ProcessLike.php
+++ b/app/Jobs/ProcessLike.php
@@ -5,14 +5,13 @@ declare(strict_types=1);
namespace App\Jobs;
use App\Models\Like;
-use GuzzleHttp\Client;
-use GuzzleHttp\Exception\GuzzleException;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Arr;
+use Illuminate\Support\Facades\Http;
use Jonnybarnes\WebmentionsParser\Authorship;
use Jonnybarnes\WebmentionsParser\Exceptions\AuthorshipParserException;
@@ -32,13 +31,11 @@ class ProcessLike implements ShouldQueue
/**
* Execute the job.
- *
- * @throws GuzzleException
*/
- public function handle(Client $client, Authorship $authorship): int
+ public function handle(Authorship $authorship): int
{
- $response = $client->request('GET', $this->like->url);
- $mf2 = \Mf2\parse((string) $response->getBody(), $this->like->url);
+ $response = Http::throw()->get($this->like->url);
+ $mf2 = \Mf2\parse($response->body(), $this->like->url);
if (Arr::has($mf2, 'items.0.properties.content')) {
$this->like->content = $mf2['items'][0]['properties']['content'][0]['html'];
}
diff --git a/app/Jobs/ProcessMedia.php b/app/Jobs/ProcessMedia.php
index f9d8af50..78aeba3e 100644
--- a/app/Jobs/ProcessMedia.php
+++ b/app/Jobs/ProcessMedia.php
@@ -7,11 +7,11 @@ namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
+use Illuminate\Image\ImageException;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
+use Illuminate\Support\Facades\Image;
use Illuminate\Support\Facades\Storage;
-use Intervention\Image\Exceptions\DecoderException;
-use Intervention\Image\ImageManager;
class ProcessMedia implements ShouldQueue
{
@@ -30,15 +30,16 @@ class ProcessMedia implements ShouldQueue
/**
* Execute the job.
*/
- public function handle(ImageManager $manager): void
+ public function handle(): void
{
// Load file
$file = Storage::disk('local')->get($this->filename);
// Open file
+ $image = Image::fromStorage($this->filename, 'local');
try {
- $image = $manager->read($file);
- } catch (DecoderException) {
+ $width = $image->width();
+ } catch (ImageException) {
// not an image; delete file and end job
Storage::disk('local')->delete($this->filename);
@@ -49,18 +50,15 @@ class ProcessMedia implements ShouldQueue
Storage::disk('public')->put($this->filename, $file);
// Create smaller versions if necessary
- if ($image->width() > 1000) {
+ if ($width > 1000) {
$filenameParts = explode('.', $this->filename);
$extension = array_pop($filenameParts);
// the following achieves this data flow
// foo.bar.png => ['foo', 'bar', 'png'] => ['foo', 'bar'] => foo.bar
$basename = trim(implode('.', $filenameParts), '.');
- $medium = $image->scale(width: 1000);
- Storage::disk('public')->put($basename.'-medium.'.$extension, (string) $medium->encode());
-
- $small = $image->scale(width: 500);
- Storage::disk('public')->put($basename.'-small.'.$extension, (string) $small->encode());
+ Storage::disk('public')->put($basename.'-medium.'.$extension, $image->scale(width: 1000)->toBytes());
+ Storage::disk('public')->put($basename.'-small.'.$extension, $image->scale(width: 500)->toBytes());
}
// Now we can delete the locally saved image
diff --git a/app/Jobs/ProcessWebMention.php b/app/Jobs/ProcessWebMention.php
index 6677b285..4ac6f5fd 100644
--- a/app/Jobs/ProcessWebMention.php
+++ b/app/Jobs/ProcessWebMention.php
@@ -7,13 +7,12 @@ namespace App\Jobs;
use App\Exceptions\RemoteContentNotFoundException;
use App\Models\Note;
use App\Models\WebMention;
-use GuzzleHttp\Client;
-use GuzzleHttp\Exception\GuzzleException;
-use GuzzleHttp\Exception\RequestException;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
+use Illuminate\Http\Client\ConnectionException;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
+use Illuminate\Support\Facades\Http;
use Jonnybarnes\WebmentionsParser\Exceptions\InvalidMentionException;
use Jonnybarnes\WebmentionsParser\Parser;
use Mf2;
@@ -36,18 +35,20 @@ class ProcessWebMention implements ShouldQueue
* Execute the job.
*
* @throws RemoteContentNotFoundException
- * @throws GuzzleException
* @throws InvalidMentionException
*/
- public function handle(Parser $parser, Client $guzzle): void
+ public function handle(Parser $parser): void
{
try {
- $response = $guzzle->request('GET', $this->source);
- } catch (RequestException $e) {
+ $response = Http::get($this->source);
+ } catch (ConnectionException) {
throw new RemoteContentNotFoundException;
}
- $this->saveRemoteContent((string) $response->getBody(), $this->source);
- $microformats = Mf2\parse((string) $response->getBody(), $this->source);
+ if ($response->failed()) {
+ throw new RemoteContentNotFoundException;
+ }
+ $this->saveRemoteContent($response->body(), $this->source);
+ $microformats = Mf2\parse($response->body(), $this->source);
$webmentions = WebMention::where('source', $this->source)->get();
foreach ($webmentions as $webmention) {
// check webmention still references target
@@ -95,6 +96,7 @@ class ProcessWebMention implements ShouldQueue
$webmention->type = $type;
$webmention->mf2 = json_encode($microformats);
$webmention->save();
+ dispatch(new NotifyBrrrOfWebMention($webmention));
}
/**
diff --git a/app/Jobs/SaveProfileImage.php b/app/Jobs/SaveProfileImage.php
index 0bcbd4e7..aa7d8af7 100644
--- a/app/Jobs/SaveProfileImage.php
+++ b/app/Jobs/SaveProfileImage.php
@@ -4,13 +4,14 @@ declare(strict_types=1);
namespace App\Jobs;
-use GuzzleHttp\Client;
-use GuzzleHttp\Exception\RequestException;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
+use Illuminate\Http\Client\ConnectionException;
+use Illuminate\Http\Client\RequestException;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Arr;
+use Illuminate\Support\Facades\Http;
use Jonnybarnes\WebmentionsParser\Authorship;
use Jonnybarnes\WebmentionsParser\Exceptions\AuthorshipParserException;
@@ -55,12 +56,10 @@ class SaveProfileImage implements ShouldQueue
&& parse_url($photo, PHP_URL_HOST) !== 'pbs.twimg.com'
&& parse_url($photo, PHP_URL_HOST) !== 'twitter.com'
) {
- $client = resolve(Client::class);
-
try {
- $response = $client->get($photo);
- $image = $response->getBody();
- } catch (RequestException) {
+ $response = Http::throw()->get($photo);
+ $image = $response->body();
+ } catch (ConnectionException|RequestException) {
// we are opening and reading the default image so that
$default = public_path().'/assets/profile-images/default-image';
$handle = fopen($default, 'rb');
diff --git a/app/Jobs/SaveScreenshot.php b/app/Jobs/SaveScreenshot.php
index 4661ccfe..b72da7b0 100755
--- a/app/Jobs/SaveScreenshot.php
+++ b/app/Jobs/SaveScreenshot.php
@@ -5,14 +5,15 @@ declare(strict_types=1);
namespace App\Jobs;
use App\Models\Bookmark;
-use GuzzleHttp\Client;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
+use Illuminate\Http\Client\PendingRequest;
+use Illuminate\Http\Client\Response;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
+use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Storage;
-use JsonException;
class SaveScreenshot implements ShouldQueue
{
@@ -27,77 +28,68 @@ class SaveScreenshot implements ShouldQueue
/**
* Execute the job.
- *
- *
- * @throws JsonException
*/
public function handle(): void
{
- // A normal Guzzle client
- $client = resolve(Client::class);
- // A Guzzle client with a custom Middleware to retry the CloudConvert API requests
- $retryClient = resolve('RetryGuzzle');
+ $cloudConvert = Http::baseUrl('https://api.cloudconvert.com/v2')
+ ->withToken(config('services.cloudconvert.token'))
+ ->throw();
// First request that CloudConvert takes a screenshot of the URL
- $takeScreenshotJobResponse = $client->request('POST', 'https://api.cloudconvert.com/v2/capture-website', [
- 'headers' => [
- 'Authorization' => 'Bearer '.config('services.cloudconvert.token'),
- ],
- 'json' => [
- 'url' => $this->bookmark->url,
- 'output_format' => 'png',
- 'screen_width' => 1440,
- 'screen_height' => 900,
- 'wait_until' => 'networkidle0',
- 'wait_time' => 100,
- ],
+ $takeScreenshotJobResponse = $cloudConvert->post('/capture-website', [
+ 'url' => $this->bookmark->url,
+ 'output_format' => 'png',
+ 'screen_width' => 1440,
+ 'screen_height' => 900,
+ 'wait_until' => 'networkidle0',
+ 'wait_time' => 100,
]);
- $taskId = json_decode($takeScreenshotJobResponse->getBody()->getContents(), false, 512, JSON_THROW_ON_ERROR)->data->id;
+ $taskId = $takeScreenshotJobResponse->json('data.id');
// Now wait till the status job is finished
- $screenshotJobStatusResponse = $retryClient->request('GET', 'https://api.cloudconvert.com/v2/tasks/'.$taskId, [
- 'headers' => [
- 'Authorization' => 'Bearer '.config('services.cloudconvert.token'),
- ],
- 'query' => [
- 'include' => 'payload',
- ],
- ]);
+ $screenshotJobStatusResponse = $this->pollUntilFinished($cloudConvert, $taskId);
- $finishedCaptureId = json_decode($screenshotJobStatusResponse->getBody()->getContents(), false, 512, JSON_THROW_ON_ERROR)->data->id;
+ $finishedCaptureId = $screenshotJobStatusResponse->json('data.id');
// Now we can create a new job to request thst the screenshot is exported to a temporary URL we can download the screenshot from
- $exportImageJob = $client->request('POST', 'https://api.cloudconvert.com/v2/export/url', [
- 'headers' => [
- 'Authorization' => 'Bearer '.config('services.cloudconvert.token'),
- ],
- 'json' => [
- 'input' => $finishedCaptureId,
- 'archive_multiple_files' => false,
- ],
+ $exportImageJob = $cloudConvert->post('/export/url', [
+ 'input' => $finishedCaptureId,
+ 'archive_multiple_files' => false,
]);
- $exportImageJobId = json_decode($exportImageJob->getBody()->getContents(), false, 512, JSON_THROW_ON_ERROR)->data->id;
+ $exportImageJobId = $exportImageJob->json('data.id');
// Again, wait till the status of this export job is finished
- $finalImageUrlResponse = $retryClient->request('GET', 'https://api.cloudconvert.com/v2/tasks/'.$exportImageJobId, [
- 'headers' => [
- 'Authorization' => 'Bearer '.config('services.cloudconvert.token'),
- ],
- 'query' => [
- 'include' => 'payload',
- ],
- ]);
+ $finalImageUrlResponse = $this->pollUntilFinished($cloudConvert, $exportImageJobId);
// Now we can download the screenshot and save it to the storage
- $finalImageUrl = json_decode($finalImageUrlResponse->getBody()->getContents(), false, 512, JSON_THROW_ON_ERROR)->data->result->files[0]->url;
+ $finalImageUrl = $finalImageUrlResponse->json('data.result.files.0.url');
- $finalImageUrlContent = $client->request('GET', $finalImageUrl);
+ $finalImageUrlContent = Http::throw()->get($finalImageUrl);
- Storage::disk('public')->put('/assets/img/bookmarks/'.$taskId.'.png', $finalImageUrlContent->getBody()->getContents());
+ Storage::disk('public')->put('/assets/img/bookmarks/'.$taskId.'.png', $finalImageUrlContent->body());
$this->bookmark->screenshot = $taskId;
$this->bookmark->save();
}
+
+ /**
+ * Poll a CloudConvert task until it reports a "finished" status.
+ */
+ private function pollUntilFinished(PendingRequest $client, string $taskId): Response
+ {
+ $attempts = 0;
+
+ do {
+ $response = $client->get('/tasks/'.$taskId, ['include' => 'payload']);
+ $finished = $response->json('data.status') === 'finished';
+ if (! $finished) {
+ $attempts++;
+ usleep(1_000_000); // 1 second, matches CloudConvert's own polling guidance
+ }
+ } while (! $finished && $attempts < 5);
+
+ return $response;
+ }
}
diff --git a/app/Jobs/SendWebMentions.php b/app/Jobs/SendWebMentions.php
index 827aaf0a..d8e962e3 100644
--- a/app/Jobs/SendWebMentions.php
+++ b/app/Jobs/SendWebMentions.php
@@ -5,8 +5,6 @@ declare(strict_types=1);
namespace App\Jobs;
use App\Models\Note;
-use GuzzleHttp\Client;
-use GuzzleHttp\Exception\GuzzleException;
use GuzzleHttp\Psr7\Header;
use GuzzleHttp\Psr7\UriResolver;
use GuzzleHttp\Psr7\Utils;
@@ -14,6 +12,7 @@ use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
+use Illuminate\Support\Facades\Http;
use Illuminate\Support\Str;
use Mf2\Parser;
@@ -32,8 +31,6 @@ class SendWebMentions implements ShouldQueue
/**
* Execute the job.
- *
- * @throws GuzzleException
*/
public function handle(): void
{
@@ -43,12 +40,9 @@ class SendWebMentions implements ShouldQueue
foreach ($urls as $url) {
$endpoint = $this->discoverWebmentionEndpoint($url);
if ($endpoint !== null) {
- $guzzle = resolve(Client::class);
- $guzzle->post($endpoint, [
- 'form_params' => [
- 'source' => $this->note->uri,
- 'target' => $url,
- ],
+ Http::asForm()->post($endpoint, [
+ 'source' => $this->note->uri,
+ 'target' => $url,
]);
}
}
@@ -56,8 +50,6 @@ class SendWebMentions implements ShouldQueue
/**
* Discover if a URL has a webmention endpoint.
- *
- * @throws GuzzleException
*/
public function discoverWebmentionEndpoint(string $url): ?string
{
@@ -71,10 +63,9 @@ class SendWebMentions implements ShouldQueue
$endpoint = null;
- $guzzle = resolve(Client::class);
- $response = $guzzle->get($url);
+ $response = Http::get($url);
// check HTTP Headers for webmention endpoint
- $links = Header::parse($response->getHeader('Link'));
+ $links = Header::parse($response->header('Link'));
foreach ($links as $link) {
if (array_key_exists('rel', $link) && mb_stristr($link['rel'], 'webmention')) {
return $this->resolveUri(trim($link[0], '<>'), $url);
@@ -82,7 +73,7 @@ class SendWebMentions implements ShouldQueue
}
// failed to find a header so parse HTML
- $html = (string) $response->getBody();
+ $html = $response->body();
if ($html === '') {
return null;
diff --git a/app/Jobs/SyndicateNoteToBluesky.php b/app/Jobs/SyndicateNoteToBluesky.php
index a306801b..582ef760 100644
--- a/app/Jobs/SyndicateNoteToBluesky.php
+++ b/app/Jobs/SyndicateNoteToBluesky.php
@@ -5,13 +5,12 @@ declare(strict_types=1);
namespace App\Jobs;
use App\Models\Note;
-use GuzzleHttp\Client;
-use GuzzleHttp\Exception\GuzzleException;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
+use Illuminate\Support\Facades\Http;
class SyndicateNoteToBluesky implements ShouldQueue
{
@@ -31,29 +30,18 @@ class SyndicateNoteToBluesky implements ShouldQueue
/**
* Execute the job.
- *
- * @throws GuzzleException
*/
- public function handle(Client $guzzle): void
+ public function handle(): void
{
- $response = $guzzle->request(
- 'POST',
- 'https://brid.gy/publish/webmention',
- [
- 'headers' => [
- 'Accept' => 'application/json',
- ],
- 'form_params' => [
- 'source' => $this->note->uri,
- 'target' => 'https://brid.gy/publish/bluesky',
- ],
- 'http_errors' => false,
- ]
- );
+ // no ->throw()/->retry() here — Bridgy would duplicate-publish on retry, see $tries above
+ $response = Http::acceptJson()->asForm()->post('https://brid.gy/publish/webmention', [
+ 'source' => $this->note->uri,
+ 'target' => 'https://brid.gy/publish/bluesky',
+ ]);
- $body = json_decode((string) $response->getBody(), true);
+ $body = $response->json();
- if ($response->getStatusCode() === 201) {
+ if ($response->status() === 201) {
$this->note->bluesky_url = $body['url'];
$this->note->save();
@@ -61,7 +49,7 @@ class SyndicateNoteToBluesky implements ShouldQueue
}
throw new \RuntimeException(
- 'Bridgy publish to Bluesky failed: '.($body['error'] ?? (string) $response->getBody())
+ 'Bridgy publish to Bluesky failed: '.($body['error'] ?? $response->body())
);
}
}
diff --git a/app/Jobs/SyndicateNoteToMastodon.php b/app/Jobs/SyndicateNoteToMastodon.php
index 456680e2..3f5cfcd4 100644
--- a/app/Jobs/SyndicateNoteToMastodon.php
+++ b/app/Jobs/SyndicateNoteToMastodon.php
@@ -5,13 +5,12 @@ declare(strict_types=1);
namespace App\Jobs;
use App\Models\Note;
-use GuzzleHttp\Client;
-use GuzzleHttp\Exception\GuzzleException;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
+use Illuminate\Support\Facades\Http;
class SyndicateNoteToMastodon implements ShouldQueue
{
@@ -31,29 +30,18 @@ class SyndicateNoteToMastodon implements ShouldQueue
/**
* Execute the job.
- *
- * @throws GuzzleException
*/
- public function handle(Client $guzzle): void
+ public function handle(): void
{
- $response = $guzzle->request(
- 'POST',
- 'https://brid.gy/publish/webmention',
- [
- 'headers' => [
- 'Accept' => 'application/json',
- ],
- 'form_params' => [
- 'source' => $this->note->uri,
- 'target' => 'https://brid.gy/publish/mastodon',
- ],
- 'http_errors' => false,
- ]
- );
+ // no ->throw()/->retry() here — Bridgy would duplicate-publish on retry, see $tries above
+ $response = Http::acceptJson()->asForm()->post('https://brid.gy/publish/webmention', [
+ 'source' => $this->note->uri,
+ 'target' => 'https://brid.gy/publish/mastodon',
+ ]);
- $body = json_decode((string) $response->getBody(), true);
+ $body = $response->json();
- if ($response->getStatusCode() === 201) {
+ if ($response->status() === 201) {
$this->note->mastodon_url = $body['url'];
$this->note->save();
@@ -61,7 +49,7 @@ class SyndicateNoteToMastodon implements ShouldQueue
}
throw new \RuntimeException(
- 'Bridgy publish to Mastodon failed: '.($body['error'] ?? (string) $response->getBody())
+ 'Bridgy publish to Mastodon failed: '.($body['error'] ?? $response->body())
);
}
}
diff --git a/app/Models/About.php b/app/Models/About.php
new file mode 100644
index 00000000..26b6a719
--- /dev/null
+++ b/app/Models/About.php
@@ -0,0 +1,13 @@
+ [
'source' => 'title',
+ 'includeTrashed' => true,
],
];
}
@@ -93,6 +94,13 @@ class Article extends Model
);
}
+ protected function uri(): Attribute
+ {
+ return Attribute::get(
+ get: fn () => config('app.url').$this->link,
+ );
+ }
+
/**
* Scope a query to only include articles from a particular year/month.
*/
diff --git a/app/Models/MicropubToken.php b/app/Models/MicropubToken.php
new file mode 100644
index 00000000..c4df41bc
--- /dev/null
+++ b/app/Models/MicropubToken.php
@@ -0,0 +1,50 @@
+ 'datetime',
+ ];
+ }
+
+ public function revoke(): void
+ {
+ $this->forceFill(['revoked_at' => now()])->save();
+ }
+
+ /**
+ * Find the active (non-revoked) token matching a raw bearer token value.
+ *
+ * Accepts mixed because callers pass request input directly, which PHP
+ * lets be an array (e.g. a client sending token[]=a) - casting that to
+ * string would throw, so anything non-string is just treated as absent.
+ */
+ public static function findActive(mixed $rawToken): ?self
+ {
+ if (! is_string($rawToken) || $rawToken === '') {
+ return null;
+ }
+
+ return self::where('token_hash', hash('sha256', $rawToken))
+ ->whereNull('revoked_at')
+ ->first();
+ }
+
+ protected function isRevoked(): Attribute
+ {
+ return Attribute::make(
+ get: fn () => $this->revoked_at !== null,
+ );
+ }
+}
diff --git a/app/Models/Note.php b/app/Models/Note.php
index af7d2c3d..89ce6b63 100644
--- a/app/Models/Note.php
+++ b/app/Models/Note.php
@@ -7,7 +7,6 @@ namespace App\Models;
use App\CommonMark\Generators\MentionGenerator;
use App\CommonMark\Renderers\MentionRenderer;
use App\Observers\NoteObserver;
-use GuzzleHttp\Client;
use Illuminate\Database\Eloquent\Attributes\Fillable;
use Illuminate\Database\Eloquent\Attributes\Hidden;
use Illuminate\Database\Eloquent\Attributes\ObservedBy;
@@ -20,6 +19,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\MorphMany;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Support\Facades\Cache;
+use Illuminate\Support\Facades\Http;
use Jonnybarnes\IndieWeb\Numbers;
use Laravel\Scout\Searchable;
use League\CommonMark\Environment\Environment;
@@ -363,18 +363,15 @@ class Note extends Model
$latLng = $latitude.','.$longitude;
return Cache::get($latLng, function () use ($latLng, $latitude, $longitude) {
- $guzzle = resolve(Client::class);
- $response = $guzzle->request('GET', 'https://nominatim.openstreetmap.org/reverse', [
- 'query' => [
+ $response = Http::withHeaders(['User-Agent' => 'jonnybarnes.uk, email jonny@jonnybarnes.uk'])
+ ->get('https://nominatim.openstreetmap.org/reverse', [
'format' => 'json',
'lat' => $latitude,
'lon' => $longitude,
'zoom' => 18,
'addressdetails' => 1,
- ],
- 'headers' => ['User-Agent' => 'jonnybarnes.uk via Guzzle, email jonny@jonnybarnes.uk'],
- ]);
- $json = json_decode((string) $response->getBody());
+ ]);
+ $json = $response->object();
if (isset($json->address->suburb)) {
$locality = $json->address->suburb;
if (isset($json->address->city)) {
diff --git a/app/Models/Setting.php b/app/Models/Setting.php
new file mode 100644
index 00000000..0c84ea36
--- /dev/null
+++ b/app/Models/Setting.php
@@ -0,0 +1,18 @@
+
+ */
+ protected $casts = [
+ 'winter_effect_enabled' => 'boolean',
+ ];
+}
diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php
index ba42853e..a40ae43f 100644
--- a/app/Providers/AppServiceProvider.php
+++ b/app/Providers/AppServiceProvider.php
@@ -2,19 +2,13 @@
namespace App\Providers;
-use GuzzleHttp\Client;
-use GuzzleHttp\Exception\ConnectException;
-use GuzzleHttp\HandlerStack;
-use GuzzleHttp\Middleware;
+use App\Models\Setting;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Pagination\LengthAwarePaginator;
use Illuminate\Support\Collection;
+use Illuminate\Support\Facades\URL;
+use Illuminate\Support\Facades\View;
use Illuminate\Support\ServiceProvider;
-use Intervention\Image\ImageManager;
-use Lcobucci\JWT\Configuration;
-use Lcobucci\JWT\Signer\Hmac\Sha256;
-use Lcobucci\JWT\Signer\Key\InMemory;
-use Lcobucci\JWT\Validation\Constraint\SignedWith;
use Symfony\Component\HtmlSanitizer\HtmlSanitizer;
use Symfony\Component\HtmlSanitizer\HtmlSanitizerConfig;
@@ -33,11 +27,6 @@ class AppServiceProvider extends ServiceProvider
*/
public function boot(): void
{
- // configure Intervention/Image
- $this->app->bind('Intervention\Image\ImageManager', function () {
- return ImageManager::withDriver(config('image.driver'));
- });
-
/**
* Paginate a standard Laravel Collection.
*
@@ -62,17 +51,6 @@ class AppServiceProvider extends ServiceProvider
);
});
- // Configure JWT builder
- $this->app->bind('Lcobucci\JWT\Configuration', function () {
- $key = InMemory::plainText(config('app.key'));
-
- $config = Configuration::forSymmetricSigner(new Sha256, $key);
-
- $config->setValidationConstraints(new SignedWith(new Sha256, $key));
-
- return $config;
- });
-
// Configure HtmlSanitizer
$this->app->bind(HtmlSanitizer::class, function () {
return new HtmlSanitizer(
@@ -82,39 +60,15 @@ class AppServiceProvider extends ServiceProvider
);
});
- // Configure Guzzle
- $this->app->bind('RetryGuzzle', function () {
- $handlerStack = HandlerStack::create();
- $handlerStack->push(Middleware::retry(
- function ($retries, $request, $response, $exception) {
- // Limit the number of retries to 5
- if ($retries >= 5) {
- return false;
- }
-
- // Retry connection exceptions
- if ($exception instanceof ConnectException) {
- return true;
- }
-
- // Retry on server errors
- if ($response && $response->getStatusCode() >= 500) {
- return true;
- }
-
- // Finally for CloudConvert, retry if status is not final
- return json_decode($response, false, 512, JSON_THROW_ON_ERROR)->data->status !== 'finished';
- },
- function () {
- // Retry after 1 second
- return 1000;
- }
- ));
-
- return new Client(['handler' => $handlerStack]);
- });
-
// Turn on Eloquent strict mode when developing
Model::shouldBeStrict(! $this->app->isProduction());
+
+ // Force HTTPS URL generation in production
+ URL::forceHttps($this->app->isProduction());
+
+ // Share whether the winter snow effect is enabled with the base layout
+ View::composer('master', function ($view) {
+ $view->with('winterEffectEnabled', Setting::first()?->winter_effect_enabled ?? false);
+ });
}
}
diff --git a/app/Services/ArticleService.php b/app/Services/ArticleService.php
index 3d5dcc56..ab91f9e4 100644
--- a/app/Services/ArticleService.php
+++ b/app/Services/ArticleService.php
@@ -8,12 +8,29 @@ use App\Models\Article;
class ArticleService
{
+ /**
+ * @throws \InvalidArgumentException if a published article already has this title
+ */
public function create(array $data): Article
{
- return Article::create([
+ $attributes = [
'title' => $data['name'],
'main' => $data['content'],
- 'published' => true,
- ]);
+ 'published' => ($data['post-status'] ?? null) !== 'draft',
+ ];
+
+ $existing = Article::where('title', $data['name'])->first();
+
+ if ($existing !== null) {
+ if ($existing->published) {
+ throw new \InvalidArgumentException("An article titled \"{$data['name']}\" has already been published");
+ }
+
+ $existing->update($attributes);
+
+ return $existing;
+ }
+
+ return Article::create($attributes);
}
}
diff --git a/app/Services/BookmarkService.php b/app/Services/BookmarkService.php
index 25017e16..b873610f 100644
--- a/app/Services/BookmarkService.php
+++ b/app/Services/BookmarkService.php
@@ -8,10 +8,8 @@ use App\Exceptions\InternetArchiveException;
use App\Jobs\ProcessBookmark;
use App\Models\Bookmark;
use App\Models\Tag;
-use GuzzleHttp\Client;
-use GuzzleHttp\Exception\ClientException;
-use GuzzleHttp\Exception\GuzzleException;
use Illuminate\Support\Arr;
+use Illuminate\Support\Facades\Http;
use Illuminate\Support\Str;
class BookmarkService
@@ -55,21 +53,19 @@ class BookmarkService
* Given a URL, attempt to save it to the Internet Archive.
*
* @throws InternetArchiveException
- * @throws GuzzleException
*/
public function getArchiveLink(string $url): string
{
- $client = resolve(Client::class);
- try {
- $response = $client->request('GET', 'https://web.archive.org/save/'.$url);
- } catch (ClientException $e) {
+ $response = Http::get('https://web.archive.org/save/'.$url);
+
+ if ($response->clientError()) {
// throw an exception to be caught
throw new InternetArchiveException;
}
- if ($response->hasHeader('Content-Location')) {
- if (Str::startsWith(Arr::get($response->getHeader('Content-Location'), 0), '/web')) {
- return $response->getHeader('Content-Location')[0];
- }
+
+ $contentLocation = $response->header('Content-Location');
+ if ($contentLocation !== '' && Str::startsWith($contentLocation, '/web')) {
+ return $contentLocation;
}
// throw an exception to be caught
diff --git a/app/Services/Micropub/Data/EntryData.php b/app/Services/Micropub/Data/EntryData.php
index 52dde72d..192c50f7 100644
--- a/app/Services/Micropub/Data/EntryData.php
+++ b/app/Services/Micropub/Data/EntryData.php
@@ -24,6 +24,7 @@ class EntryData extends MicropubData
public readonly mixed $checkin,
public readonly mixed $syndication,
public readonly ?array $photos,
+ public readonly ?string $postStatus,
) {}
public static function fromRequest(Request $request): static
@@ -49,6 +50,7 @@ class EntryData extends MicropubData
checkin: Arr::get($data, 'properties.checkin.0'),
syndication: Arr::get($data, 'properties.syndication.0'),
photos: Arr::get($data, 'properties.photo'),
+ postStatus: Arr::get($data, 'properties.post-status.0'),
);
}
@@ -67,6 +69,7 @@ class EntryData extends MicropubData
checkin: $request->input('checkin'),
syndication: $request->input('syndication'),
photos: $request->input('photos'),
+ postStatus: $request->input('post-status'),
);
}
@@ -100,6 +103,7 @@ class EntryData extends MicropubData
checkin: $data['checkin'] ?? null,
syndication: $data['syndication'] ?? null,
photos: $data['photos'] ?? null,
+ postStatus: $data['post-status'] ?? null,
);
}
@@ -120,6 +124,7 @@ class EntryData extends MicropubData
'checkin' => $this->checkin,
'syndication' => $this->syndication,
'photos' => $this->photos,
+ 'post-status' => $this->postStatus,
];
}
}
diff --git a/app/Services/Micropub/Handlers/CardHandler.php b/app/Services/Micropub/Handlers/CardHandler.php
index 02e3a066..6b24f21b 100644
--- a/app/Services/Micropub/Handlers/CardHandler.php
+++ b/app/Services/Micropub/Handlers/CardHandler.php
@@ -24,9 +24,7 @@ class CardHandler implements MicropubHandlerInterface
assert($data instanceof CardData);
$scopes = $data->tokenData['scope'];
- if (is_string($scopes)) {
- $scopes = explode(' ', $scopes);
- }
+ $scopes = explode(' ', $scopes);
if (! in_array('create', $scopes, true)) {
throw new InvalidTokenScopeException;
diff --git a/app/Services/Micropub/Handlers/EntryHandler.php b/app/Services/Micropub/Handlers/EntryHandler.php
index ef9740f2..d79a0418 100644
--- a/app/Services/Micropub/Handlers/EntryHandler.php
+++ b/app/Services/Micropub/Handlers/EntryHandler.php
@@ -27,9 +27,7 @@ class EntryHandler implements MicropubHandlerInterface
assert($data instanceof EntryData);
$scopes = $data->tokenData['scope'];
- if (is_string($scopes)) {
- $scopes = explode(' ', $scopes);
- }
+ $scopes = explode(' ', $scopes);
if (! in_array('create', $scopes, true)) {
throw new InvalidTokenScopeException;
@@ -39,7 +37,7 @@ class EntryHandler implements MicropubHandlerInterface
$location = match (true) {
isset($dataArray['like-of']) => resolve(LikeService::class)->create($dataArray)->url,
isset($dataArray['bookmark-of']) => resolve(BookmarkService::class)->create($dataArray)->uri,
- isset($dataArray['name']) => resolve(ArticleService::class)->create($dataArray)->link,
+ isset($dataArray['name']) => resolve(ArticleService::class)->create($dataArray)->uri,
default => resolve(NoteService::class)->create($dataArray)->uri,
};
diff --git a/app/Services/Micropub/Handlers/UpdateHandler.php b/app/Services/Micropub/Handlers/UpdateHandler.php
index 49f86063..136a0840 100644
--- a/app/Services/Micropub/Handlers/UpdateHandler.php
+++ b/app/Services/Micropub/Handlers/UpdateHandler.php
@@ -30,9 +30,7 @@ class UpdateHandler implements MicropubHandlerInterface
assert($data instanceof UpdateData);
$scopes = $data->tokenData['scope'];
- if (is_string($scopes)) {
- $scopes = explode(' ', $scopes);
- }
+ $scopes = explode(' ', $scopes);
if (! in_array('update', $scopes, true)) {
throw new InvalidTokenScopeException;
diff --git a/app/Services/TokenService.php b/app/Services/TokenService.php
index 68a9293b..2941c28b 100644
--- a/app/Services/TokenService.php
+++ b/app/Services/TokenService.php
@@ -5,28 +5,26 @@ declare(strict_types=1);
namespace App\Services;
use App\Jobs\AddClientToDatabase;
-use DateTimeImmutable;
-use Lcobucci\JWT\Configuration;
+use App\Models\MicropubToken;
class TokenService
{
/**
- * Generate a JWT token.
+ * Generate a new bearer token.
*/
public function getNewToken(array $data): string
{
- $config = resolve(Configuration::class);
+ $token = rtrim(strtr(base64_encode(random_bytes(32)), '+/', '-_'), '=');
- $token = $config->builder()
- ->issuedAt(new DateTimeImmutable)
- ->withClaim('client_id', $data['client_id'])
- ->withClaim('me', $data['me'])
- ->withClaim('scope', $data['scope'])
- ->withClaim('nonce', bin2hex(random_bytes(8)))
- ->getToken($config->signer(), $config->signingKey());
+ MicropubToken::create([
+ 'token_hash' => hash('sha256', $token),
+ 'client_id' => $data['client_id'],
+ 'me' => $data['me'],
+ 'scope' => $data['scope'],
+ ]);
dispatch(new AddClientToDatabase($data['client_id']));
- return $token->toString();
+ return $token;
}
}
diff --git a/bootstrap/app.php b/bootstrap/app.php
index 9c73bdb9..e29a3598 100644
--- a/bootstrap/app.php
+++ b/bootstrap/app.php
@@ -17,8 +17,10 @@ return Application::configure(basePath: dirname(__DIR__))
->append(LinkHeadersMiddleware::class)
->preventRequestForgery(
except: [
- 'auth', // This is the IndieAuth auth endpoint
- 'token', // This is the IndieAuth token endpoint
+ 'auth', // This is the IndieAuth auth endpoint
+ 'token', // This is the IndieAuth token endpoint
+ 'revocation', // This is the IndieAuth revocation endpoint
+ 'introspect', // This is the IndieAuth introspection endpoint
'api/post',
'api/media',
'micropub/places',
diff --git a/composer.json b/composer.json
index 1b94abe8..5871ee02 100644
--- a/composer.json
+++ b/composer.json
@@ -14,20 +14,18 @@
"ext-pgsql": "*",
"ext-sodium": "*",
"cviebrock/eloquent-sluggable": "^13.0",
- "guzzlehttp/guzzle": "^7.2",
"indieauth/client": "^1.1",
- "intervention/image": "^3",
+ "intervention/image": "^4.0",
"jonnybarnes/indieweb": "~0.2",
"jonnybarnes/webmentions-parser": "~0.5",
"laravel/framework": "^13.0",
"laravel/horizon": "^5.0",
"laravel/scout": "^10.1",
"laravel/tinker": "^3.0",
- "lcobucci/jwt": "^5.0",
"league/commonmark": "^2.0",
"league/flysystem-aws-s3-v3": "^3.0",
"mf2/mf2": "~0.3",
- "spatie/laravel-flare": "^2.2",
+ "spatie/laravel-flare": "^3.0",
"symfony/html-sanitizer": "^8.0",
"tempest/highlight": "^2.27",
"web-auth/webauthn-lib": "^5.0"
@@ -42,8 +40,8 @@
"laravel/sail": "^1.41",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.6",
- "phpunit/php-code-coverage": "^12.0",
- "phpunit/phpunit": "^12.5.12",
+ "phpunit/php-code-coverage": "^14.0",
+ "phpunit/phpunit": "^13.0",
"spatie/laravel-ray": "^1.12",
"spatie/x-ray": "^1.2"
},
diff --git a/composer.lock b/composer.lock
index 65ec1857..4c98c2cf 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "30db4db4dcfdc487f28e738f0d22d68c",
+ "content-hash": "a2842cf95580a08ad759a92d74fae3b4",
"packages": [
{
"name": "aws/aws-crt-php",
@@ -62,16 +62,16 @@
},
{
"name": "aws/aws-sdk-php",
- "version": "3.386.1",
+ "version": "3.389.0",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
- "reference": "e36bc0e97e82d68acc92b9e06f5dc544913d819a"
+ "reference": "e6e6649e58826c7edaa9f546f444461a25a22719"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/e36bc0e97e82d68acc92b9e06f5dc544913d819a",
- "reference": "e36bc0e97e82d68acc92b9e06f5dc544913d819a",
+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/e6e6649e58826c7edaa9f546f444461a25a22719",
+ "reference": "e6e6649e58826c7edaa9f546f444461a25a22719",
"shasum": ""
},
"require": {
@@ -79,9 +79,9 @@
"ext-json": "*",
"ext-pcre": "*",
"ext-simplexml": "*",
- "guzzlehttp/guzzle": "^7.4.5",
- "guzzlehttp/promises": "^2.0",
- "guzzlehttp/psr7": "^2.4.5",
+ "guzzlehttp/guzzle": "^7.8.2 || ^8.0",
+ "guzzlehttp/promises": "^2.0.3 || ^3.0",
+ "guzzlehttp/psr7": "^2.6.3 || ^3.0",
"mtdowling/jmespath.php": "^2.9.1",
"php": ">=8.1",
"psr/http-message": "^1.0 || ^2.0",
@@ -153,22 +153,22 @@
"support": {
"forum": "https://github.com/aws/aws-sdk-php/discussions",
"issues": "https://github.com/aws/aws-sdk-php/issues",
- "source": "https://github.com/aws/aws-sdk-php/tree/3.386.1"
+ "source": "https://github.com/aws/aws-sdk-php/tree/3.389.0"
},
- "time": "2026-06-23T01:24:07+00:00"
+ "time": "2026-07-24T18:05:53+00:00"
},
{
"name": "brick/math",
- "version": "0.17.2",
+ "version": "0.18.0",
"source": {
"type": "git",
"url": "https://github.com/brick/math.git",
- "reference": "8189e751995f9e15729c1aa2f89fa8f166ffe818"
+ "reference": "82944324d1c1bdb2c2618e89978d4e2ad78d69ad"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/brick/math/zipball/8189e751995f9e15729c1aa2f89fa8f166ffe818",
- "reference": "8189e751995f9e15729c1aa2f89fa8f166ffe818",
+ "url": "https://api.github.com/repos/brick/math/zipball/82944324d1c1bdb2c2618e89978d4e2ad78d69ad",
+ "reference": "82944324d1c1bdb2c2618e89978d4e2ad78d69ad",
"shasum": ""
},
"require": {
@@ -206,7 +206,7 @@
],
"support": {
"issues": "https://github.com/brick/math/issues",
- "source": "https://github.com/brick/math/tree/0.17.2"
+ "source": "https://github.com/brick/math/tree/0.18.0"
},
"funding": [
{
@@ -214,7 +214,7 @@
"type": "github"
}
],
- "time": "2026-05-25T20:34:43+00:00"
+ "time": "2026-06-14T18:21:03+00:00"
},
{
"name": "carbonphp/carbon-doctrine-types",
@@ -361,16 +361,16 @@
},
{
"name": "cviebrock/eloquent-sluggable",
- "version": "13.0.0",
+ "version": "13.0.1",
"source": {
"type": "git",
"url": "https://github.com/cviebrock/eloquent-sluggable.git",
- "reference": "0a023eed5bdc7da3aa9107cb2299757ce4a656e3"
+ "reference": "a0e2e342461ac04f5c41eb1c52f9bc77eafa6a03"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/cviebrock/eloquent-sluggable/zipball/0a023eed5bdc7da3aa9107cb2299757ce4a656e3",
- "reference": "0a023eed5bdc7da3aa9107cb2299757ce4a656e3",
+ "url": "https://api.github.com/repos/cviebrock/eloquent-sluggable/zipball/a0e2e342461ac04f5c41eb1c52f9bc77eafa6a03",
+ "reference": "a0e2e342461ac04f5c41eb1c52f9bc77eafa6a03",
"shasum": ""
},
"require": {
@@ -422,7 +422,7 @@
],
"support": {
"issues": "https://github.com/cviebrock/eloquent-sluggable/issues",
- "source": "https://github.com/cviebrock/eloquent-sluggable/tree/13.0.0"
+ "source": "https://github.com/cviebrock/eloquent-sluggable/tree/13.0.1"
},
"funding": [
{
@@ -430,7 +430,7 @@
"type": "github"
}
],
- "time": "2026-03-19T14:42:10+00:00"
+ "time": "2026-07-20T13:44:42+00:00"
},
{
"name": "dflydev/dot-access-data",
@@ -988,22 +988,22 @@
},
{
"name": "guzzlehttp/guzzle",
- "version": "7.13.0",
+ "version": "7.15.1",
"source": {
"type": "git",
"url": "https://github.com/guzzle/guzzle.git",
- "reference": "a4decaa9745dc567467970e43f183e260cfa51fd"
+ "reference": "61443dfb33c62f308ee8add20f45b4d6e4bf8d2f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4decaa9745dc567467970e43f183e260cfa51fd",
- "reference": "a4decaa9745dc567467970e43f183e260cfa51fd",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/61443dfb33c62f308ee8add20f45b4d6e4bf8d2f",
+ "reference": "61443dfb33c62f308ee8add20f45b4d6e4bf8d2f",
"shasum": ""
},
"require": {
"ext-json": "*",
- "guzzlehttp/promises": "^2.5",
- "guzzlehttp/psr7": "^2.12.3",
+ "guzzlehttp/promises": "^2.5.1",
+ "guzzlehttp/psr7": "^2.13",
"php": "^7.2.5 || ^8.0",
"psr/http-client": "^1.0",
"symfony/deprecation-contracts": "^2.5 || ^3.0",
@@ -1015,8 +1015,8 @@
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"ext-curl": "*",
- "guzzle/client-integration-tests": "3.0.2",
- "guzzlehttp/test-server": "^0.6",
+ "guzzle/client-integration-tests": "3.0.3",
+ "guzzlehttp/test-server": "^0.7",
"php-http/message-factory": "^1.1",
"phpunit/phpunit": "^8.5.52 || ^9.6.34",
"psr/log": "^1.1 || ^2.0 || ^3.0"
@@ -1096,7 +1096,7 @@
],
"support": {
"issues": "https://github.com/guzzle/guzzle/issues",
- "source": "https://github.com/guzzle/guzzle/tree/7.13.0"
+ "source": "https://github.com/guzzle/guzzle/tree/7.15.1"
},
"funding": [
{
@@ -1112,20 +1112,20 @@
"type": "tidelift"
}
],
- "time": "2026-06-29T13:31:06+00:00"
+ "time": "2026-07-18T11:23:11+00:00"
},
{
"name": "guzzlehttp/promises",
- "version": "2.5.0",
+ "version": "2.5.1",
"source": {
"type": "git",
"url": "https://github.com/guzzle/promises.git",
- "reference": "4360e982f87f5f258bf872d094647791db2f4c8e"
+ "reference": "9ad1e4fc607446a055b95870c7f668e93b5cff29"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/4360e982f87f5f258bf872d094647791db2f4c8e",
- "reference": "4360e982f87f5f258bf872d094647791db2f4c8e",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/9ad1e4fc607446a055b95870c7f668e93b5cff29",
+ "reference": "9ad1e4fc607446a055b95870c7f668e93b5cff29",
"shasum": ""
},
"require": {
@@ -1180,7 +1180,7 @@
],
"support": {
"issues": "https://github.com/guzzle/promises/issues",
- "source": "https://github.com/guzzle/promises/tree/2.5.0"
+ "source": "https://github.com/guzzle/promises/tree/2.5.1"
},
"funding": [
{
@@ -1196,20 +1196,20 @@
"type": "tidelift"
}
],
- "time": "2026-06-02T12:23:43+00:00"
+ "time": "2026-07-08T15:48:39+00:00"
},
{
"name": "guzzlehttp/psr7",
- "version": "2.12.3",
+ "version": "2.13.0",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
- "reference": "7ec62dc3f44aa218487dbed81a9bf9bc647be55d"
+ "reference": "dad89620b7a6edb60c15858442eb2e408b45d8f4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/7ec62dc3f44aa218487dbed81a9bf9bc647be55d",
- "reference": "7ec62dc3f44aa218487dbed81a9bf9bc647be55d",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/dad89620b7a6edb60c15858442eb2e408b45d8f4",
+ "reference": "dad89620b7a6edb60c15858442eb2e408b45d8f4",
"shasum": ""
},
"require": {
@@ -1299,7 +1299,7 @@
],
"support": {
"issues": "https://github.com/guzzle/psr7/issues",
- "source": "https://github.com/guzzle/psr7/tree/2.12.3"
+ "source": "https://github.com/guzzle/psr7/tree/2.13.0"
},
"funding": [
{
@@ -1315,20 +1315,20 @@
"type": "tidelift"
}
],
- "time": "2026-06-23T15:21:08+00:00"
+ "time": "2026-07-16T22:23:49+00:00"
},
{
"name": "guzzlehttp/uri-template",
- "version": "v1.0.8",
+ "version": "v1.0.10",
"source": {
"type": "git",
"url": "https://github.com/guzzle/uri-template.git",
- "reference": "9c19128923b05a5d7355e5d2318d7808b7e33bbd"
+ "reference": "f6c24c21f42b990e9a58912b332d0874df6ba839"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/uri-template/zipball/9c19128923b05a5d7355e5d2318d7808b7e33bbd",
- "reference": "9c19128923b05a5d7355e5d2318d7808b7e33bbd",
+ "url": "https://api.github.com/repos/guzzle/uri-template/zipball/f6c24c21f42b990e9a58912b332d0874df6ba839",
+ "reference": "f6c24c21f42b990e9a58912b332d0874df6ba839",
"shasum": ""
},
"require": {
@@ -1385,7 +1385,7 @@
],
"support": {
"issues": "https://github.com/guzzle/uri-template/issues",
- "source": "https://github.com/guzzle/uri-template/tree/v1.0.8"
+ "source": "https://github.com/guzzle/uri-template/tree/v1.0.10"
},
"funding": [
{
@@ -1401,7 +1401,7 @@
"type": "tidelift"
}
],
- "time": "2026-06-23T13:02:23+00:00"
+ "time": "2026-07-17T13:53:03+00:00"
},
{
"name": "indieauth/client",
@@ -1556,26 +1556,26 @@
},
{
"name": "intervention/gif",
- "version": "4.2.4",
+ "version": "5.0.1",
"source": {
"type": "git",
"url": "https://github.com/Intervention/gif.git",
- "reference": "c3598a16ebe7690cd55640c44144a9df383ea73c"
+ "reference": "bb395af960deffe64d70c976b4df9283f68e762d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Intervention/gif/zipball/c3598a16ebe7690cd55640c44144a9df383ea73c",
- "reference": "c3598a16ebe7690cd55640c44144a9df383ea73c",
+ "url": "https://api.github.com/repos/Intervention/gif/zipball/bb395af960deffe64d70c976b4df9283f68e762d",
+ "reference": "bb395af960deffe64d70c976b4df9283f68e762d",
"shasum": ""
},
"require": {
- "php": "^8.1"
+ "php": "^8.3"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
- "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
+ "phpunit/phpunit": "^12.0",
"slevomat/coding-standard": "~8.0",
- "squizlabs/php_codesniffer": "^3.8"
+ "squizlabs/php_codesniffer": "^4"
},
"type": "library",
"autoload": {
@@ -1594,7 +1594,7 @@
"homepage": "https://intervention.io/"
}
],
- "description": "Native PHP GIF Encoder/Decoder",
+ "description": "PHP GIF Encoder/Decoder",
"homepage": "https://github.com/intervention/gif",
"keywords": [
"animation",
@@ -1604,7 +1604,7 @@
],
"support": {
"issues": "https://github.com/Intervention/gif/issues",
- "source": "https://github.com/Intervention/gif/tree/4.2.4"
+ "source": "https://github.com/Intervention/gif/tree/5.0.1"
},
"funding": [
{
@@ -1620,31 +1620,31 @@
"type": "ko_fi"
}
],
- "time": "2026-01-04T09:27:23+00:00"
+ "time": "2026-05-03T06:04:47+00:00"
},
{
"name": "intervention/image",
- "version": "3.11.8",
+ "version": "4.2.0",
"source": {
"type": "git",
"url": "https://github.com/Intervention/image.git",
- "reference": "cf04c8dd245697f701057c13d4bfe140d584e738"
+ "reference": "830907fc5397dfc2a51a4e90322d586989fc8364"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Intervention/image/zipball/cf04c8dd245697f701057c13d4bfe140d584e738",
- "reference": "cf04c8dd245697f701057c13d4bfe140d584e738",
+ "url": "https://api.github.com/repos/Intervention/image/zipball/830907fc5397dfc2a51a4e90322d586989fc8364",
+ "reference": "830907fc5397dfc2a51a4e90322d586989fc8364",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
- "intervention/gif": "^4.2",
- "php": "^8.1"
+ "intervention/gif": "^5",
+ "php": "^8.3"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^2.1",
- "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
+ "phpunit/phpunit": "^12.0",
"slevomat/coding-standard": "~8.0",
"squizlabs/php_codesniffer": "^4"
},
@@ -1680,7 +1680,7 @@
],
"support": {
"issues": "https://github.com/Intervention/image/issues",
- "source": "https://github.com/Intervention/image/tree/3.11.8"
+ "source": "https://github.com/Intervention/image/tree/4.2.0"
},
"funding": [
{
@@ -1696,7 +1696,7 @@
"type": "ko_fi"
}
],
- "time": "2026-05-01T08:20:10+00:00"
+ "time": "2026-07-09T13:07:14+00:00"
},
{
"name": "jonnybarnes/indieweb",
@@ -1801,16 +1801,16 @@
},
{
"name": "laravel/framework",
- "version": "v13.17.0",
+ "version": "v13.22.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "0802b7a81f3252d78200b8037ac183a686a529f0"
+ "reference": "d354afa45334cdac523fbc015f203a78d7e2f5c6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/0802b7a81f3252d78200b8037ac183a686a529f0",
- "reference": "0802b7a81f3252d78200b8037ac183a686a529f0",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/d354afa45334cdac523fbc015f203a78d7e2f5c6",
+ "reference": "d354afa45334cdac523fbc015f203a78d7e2f5c6",
"shasum": ""
},
"require": {
@@ -1889,6 +1889,7 @@
"illuminate/filesystem": "self.version",
"illuminate/hashing": "self.version",
"illuminate/http": "self.version",
+ "illuminate/image": "self.version",
"illuminate/json-schema": "self.version",
"illuminate/log": "self.version",
"illuminate/macroable": "self.version",
@@ -1915,6 +1916,7 @@
"ext-gmp": "*",
"fakerphp/faker": "^1.24",
"guzzlehttp/psr7": "^2.9",
+ "intervention/image": "^4.0",
"laravel/pint": "^1.18",
"league/flysystem-aws-s3-v3": "^3.25.1",
"league/flysystem-ftp": "^3.25.1",
@@ -1951,6 +1953,7 @@
"ext-redis": "Required to use the Redis cache and queue drivers (^4.0 || ^5.0 || ^6.0).",
"fakerphp/faker": "Required to generate fake data using the fake() helper (^1.23).",
"filp/whoops": "Required for friendly error pages in development (^2.14.3).",
+ "intervention/image": "Required to use the image processing features (^4.0).",
"laravel/tinker": "Required to use the tinker console command (^2.0).",
"league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
"league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
@@ -2021,20 +2024,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2026-06-23T19:42:45+00:00"
+ "time": "2026-07-24T20:38:48+00:00"
},
{
"name": "laravel/horizon",
- "version": "v5.47.2",
+ "version": "v5.48.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/horizon.git",
- "reference": "a6ac142293ad02db4d7cccb961dd32f56ef1462d"
+ "reference": "7953b21becabb83974ab93111ffa4d9439dcac07"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/horizon/zipball/a6ac142293ad02db4d7cccb961dd32f56ef1462d",
- "reference": "a6ac142293ad02db4d7cccb961dd32f56ef1462d",
+ "url": "https://api.github.com/repos/laravel/horizon/zipball/7953b21becabb83974ab93111ffa4d9439dcac07",
+ "reference": "7953b21becabb83974ab93111ffa4d9439dcac07",
"shasum": ""
},
"require": {
@@ -2099,9 +2102,9 @@
],
"support": {
"issues": "https://github.com/laravel/horizon/issues",
- "source": "https://github.com/laravel/horizon/tree/v5.47.2"
+ "source": "https://github.com/laravel/horizon/tree/v5.48.1"
},
- "time": "2026-06-03T15:11:37+00:00"
+ "time": "2026-07-20T15:53:58+00:00"
},
{
"name": "laravel/prompts",
@@ -2300,16 +2303,16 @@
},
{
"name": "laravel/serializable-closure",
- "version": "v2.0.13",
+ "version": "v2.0.15",
"source": {
"type": "git",
"url": "https://github.com/laravel/serializable-closure.git",
- "reference": "b566ee0dd251f3c4078bed003a7ce015f5ea6dce"
+ "reference": "dccd8bcb851bb03fcc005df650b708b57cc52661"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b566ee0dd251f3c4078bed003a7ce015f5ea6dce",
- "reference": "b566ee0dd251f3c4078bed003a7ce015f5ea6dce",
+ "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/dccd8bcb851bb03fcc005df650b708b57cc52661",
+ "reference": "dccd8bcb851bb03fcc005df650b708b57cc52661",
"shasum": ""
},
"require": {
@@ -2357,7 +2360,7 @@
"issues": "https://github.com/laravel/serializable-closure/issues",
"source": "https://github.com/laravel/serializable-closure"
},
- "time": "2026-04-16T14:03:50+00:00"
+ "time": "2026-07-21T16:49:22+00:00"
},
{
"name": "laravel/tinker",
@@ -2428,91 +2431,18 @@
},
"time": "2026-03-17T14:54:13+00:00"
},
- {
- "name": "lcobucci/jwt",
- "version": "5.6.0",
- "source": {
- "type": "git",
- "url": "https://github.com/lcobucci/jwt.git",
- "reference": "bb3e9f21e4196e8afc41def81ef649c164bca25e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/lcobucci/jwt/zipball/bb3e9f21e4196e8afc41def81ef649c164bca25e",
- "reference": "bb3e9f21e4196e8afc41def81ef649c164bca25e",
- "shasum": ""
- },
- "require": {
- "ext-openssl": "*",
- "ext-sodium": "*",
- "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
- "psr/clock": "^1.0"
- },
- "require-dev": {
- "infection/infection": "^0.29",
- "lcobucci/clock": "^3.2",
- "lcobucci/coding-standard": "^11.0",
- "phpbench/phpbench": "^1.2",
- "phpstan/extension-installer": "^1.2",
- "phpstan/phpstan": "^1.10.7",
- "phpstan/phpstan-deprecation-rules": "^1.1.3",
- "phpstan/phpstan-phpunit": "^1.3.10",
- "phpstan/phpstan-strict-rules": "^1.5.0",
- "phpunit/phpunit": "^11.1"
- },
- "suggest": {
- "lcobucci/clock": ">= 3.2"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Lcobucci\\JWT\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Luís Cobucci",
- "email": "lcobucci@gmail.com",
- "role": "Developer"
- }
- ],
- "description": "A simple library to work with JSON Web Token and JSON Web Signature",
- "keywords": [
- "JWS",
- "jwt"
- ],
- "support": {
- "issues": "https://github.com/lcobucci/jwt/issues",
- "source": "https://github.com/lcobucci/jwt/tree/5.6.0"
- },
- "funding": [
- {
- "url": "https://github.com/lcobucci",
- "type": "github"
- },
- {
- "url": "https://www.patreon.com/lcobucci",
- "type": "patreon"
- }
- ],
- "time": "2025-10-17T11:30:53+00:00"
- },
{
"name": "league/commonmark",
- "version": "2.8.2",
+ "version": "2.8.3",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/commonmark.git",
- "reference": "59fb075d2101740c337c7216e3f32b36c204218b"
+ "reference": "1902f60f984235023acbe03db6ad614a37b3c3e7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/59fb075d2101740c337c7216e3f32b36c204218b",
- "reference": "59fb075d2101740c337c7216e3f32b36c204218b",
+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/1902f60f984235023acbe03db6ad614a37b3c3e7",
+ "reference": "1902f60f984235023acbe03db6ad614a37b3c3e7",
"shasum": ""
},
"require": {
@@ -2534,8 +2464,8 @@
"github/gfm": "0.29.0",
"michelf/php-markdown": "^1.4 || ^2.0",
"nyholm/psr7": "^1.5",
- "phpstan/phpstan": "^1.8.2",
- "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
+ "phpstan/phpstan": "^2.0.0",
+ "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0 || ^12.0.0 || ^13.0.0",
"scrutinizer/ocular": "^1.8.1",
"symfony/finder": "^5.3 | ^6.0 | ^7.0 || ^8.0",
"symfony/process": "^5.4 | ^6.0 | ^7.0 || ^8.0",
@@ -2606,7 +2536,7 @@
"type": "tidelift"
}
],
- "time": "2026-03-19T13:16:38+00:00"
+ "time": "2026-07-12T15:29:16+00:00"
},
{
"name": "league/config",
@@ -2692,16 +2622,16 @@
},
{
"name": "league/flysystem",
- "version": "3.35.1",
+ "version": "3.35.2",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "f23af6c5aafd958a7593029a271d77baf5ed793c"
+ "reference": "b277b5dc3d56650b68904117124e79c851e12376"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f23af6c5aafd958a7593029a271d77baf5ed793c",
- "reference": "f23af6c5aafd958a7593029a271d77baf5ed793c",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/b277b5dc3d56650b68904117124e79c851e12376",
+ "reference": "b277b5dc3d56650b68904117124e79c851e12376",
"shasum": ""
},
"require": {
@@ -2769,22 +2699,22 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.35.1"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.35.2"
},
- "time": "2026-06-25T06:52:23+00:00"
+ "time": "2026-07-06T14:42:07+00:00"
},
{
"name": "league/flysystem-aws-s3-v3",
- "version": "3.35.1",
+ "version": "3.35.2",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
- "reference": "3f93d3f4bd5c12a5dfb34a7267c40b1bc4587b94"
+ "reference": "8475ef9adfc6498b85469e2abec6fe3118cd08c4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/3f93d3f4bd5c12a5dfb34a7267c40b1bc4587b94",
- "reference": "3f93d3f4bd5c12a5dfb34a7267c40b1bc4587b94",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/8475ef9adfc6498b85469e2abec6fe3118cd08c4",
+ "reference": "8475ef9adfc6498b85469e2abec6fe3118cd08c4",
"shasum": ""
},
"require": {
@@ -2824,9 +2754,9 @@
"storage"
],
"support": {
- "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.35.1"
+ "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.35.2"
},
- "time": "2026-06-25T06:51:08+00:00"
+ "time": "2026-07-01T23:25:49+00:00"
},
{
"name": "league/flysystem-local",
@@ -2879,16 +2809,16 @@
},
{
"name": "league/mime-type-detection",
- "version": "1.16.0",
+ "version": "1.17.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/mime-type-detection.git",
- "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
+ "reference": "f5f47eff7c48ed1003069a2ca67f316fb4021c76"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
- "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
+ "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/f5f47eff7c48ed1003069a2ca67f316fb4021c76",
+ "reference": "f5f47eff7c48ed1003069a2ca67f316fb4021c76",
"shasum": ""
},
"require": {
@@ -2898,7 +2828,7 @@
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^0.12.68",
- "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
+ "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0 || ^11.0 || ^12.0"
},
"type": "library",
"autoload": {
@@ -2919,7 +2849,7 @@
"description": "Mime-type detection for Flysystem",
"support": {
"issues": "https://github.com/thephpleague/mime-type-detection/issues",
- "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
+ "source": "https://github.com/thephpleague/mime-type-detection/tree/1.17.0"
},
"funding": [
{
@@ -2931,7 +2861,7 @@
"type": "tidelift"
}
],
- "time": "2024-09-21T08:32:55+00:00"
+ "time": "2026-07-09T11:49:27+00:00"
},
{
"name": "league/uri",
@@ -3282,16 +3212,16 @@
},
{
"name": "mtdowling/jmespath.php",
- "version": "2.9.1",
+ "version": "2.9.2",
"source": {
"type": "git",
"url": "https://github.com/jmespath/jmespath.php.git",
- "reference": "9c208ba27ae7d90853c288b3795d6702eb251d34"
+ "reference": "2157c5e50e813ec6a96c1eed3be7f64a20fb32a8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9c208ba27ae7d90853c288b3795d6702eb251d34",
- "reference": "9c208ba27ae7d90853c288b3795d6702eb251d34",
+ "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/2157c5e50e813ec6a96c1eed3be7f64a20fb32a8",
+ "reference": "2157c5e50e813ec6a96c1eed3be7f64a20fb32a8",
"shasum": ""
},
"require": {
@@ -3342,22 +3272,22 @@
],
"support": {
"issues": "https://github.com/jmespath/jmespath.php/issues",
- "source": "https://github.com/jmespath/jmespath.php/tree/2.9.1"
+ "source": "https://github.com/jmespath/jmespath.php/tree/2.9.2"
},
- "time": "2026-06-11T10:43:56+00:00"
+ "time": "2026-07-06T18:56:19+00:00"
},
{
"name": "nesbot/carbon",
- "version": "3.13.0",
+ "version": "3.13.1",
"source": {
"type": "git",
"url": "https://github.com/CarbonPHP/carbon.git",
- "reference": "40f6618f052df16b545f626fbf9a878e6497d16a"
+ "reference": "2937ad3d1d2c506fd2bc97d571438a95641f44e2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/40f6618f052df16b545f626fbf9a878e6497d16a",
- "reference": "40f6618f052df16b545f626fbf9a878e6497d16a",
+ "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/2937ad3d1d2c506fd2bc97d571438a95641f44e2",
+ "reference": "2937ad3d1d2c506fd2bc97d571438a95641f44e2",
"shasum": ""
},
"require": {
@@ -3449,7 +3379,7 @@
"type": "tidelift"
}
],
- "time": "2026-06-18T13:49:15+00:00"
+ "time": "2026-07-09T18:23:49+00:00"
},
{
"name": "nette/schema",
@@ -3520,16 +3450,16 @@
},
{
"name": "nette/utils",
- "version": "v4.1.4",
+ "version": "v4.1.5",
"source": {
"type": "git",
"url": "https://github.com/nette/utils.git",
- "reference": "7da6c396d7ebe142bc857c20479d5e70a5e1aac7"
+ "reference": "b043439dbdf954e6c28b5ea7e34b0100f83165e0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nette/utils/zipball/7da6c396d7ebe142bc857c20479d5e70a5e1aac7",
- "reference": "7da6c396d7ebe142bc857c20479d5e70a5e1aac7",
+ "url": "https://api.github.com/repos/nette/utils/zipball/b043439dbdf954e6c28b5ea7e34b0100f83165e0",
+ "reference": "b043439dbdf954e6c28b5ea7e34b0100f83165e0",
"shasum": ""
},
"require": {
@@ -3549,7 +3479,7 @@
},
"suggest": {
"ext-gd": "to use Image",
- "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
+ "ext-iconv": "to use Strings::chr(), ord() and reverse()",
"ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
"ext-json": "to use Nette\\Utils\\Json",
"ext-mbstring": "to use Strings::lower() etc...",
@@ -3605,26 +3535,25 @@
],
"support": {
"issues": "https://github.com/nette/utils/issues",
- "source": "https://github.com/nette/utils/tree/v4.1.4"
+ "source": "https://github.com/nette/utils/tree/v4.1.5"
},
- "time": "2026-05-11T20:49:54+00:00"
+ "time": "2026-07-17T23:02:45+00:00"
},
{
"name": "nikic/php-parser",
- "version": "v5.7.0",
+ "version": "v5.8.0",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
+ "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
- "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/044a6a392ff8ad0d61f14370a5fbbd0a0107152f",
+ "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f",
"shasum": ""
},
"require": {
- "ext-ctype": "*",
"ext-json": "*",
"ext-tokenizer": "*",
"php": ">=7.4"
@@ -3663,9 +3592,9 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
+ "source": "https://github.com/nikic/PHP-Parser/tree/v5.8.0"
},
- "time": "2025-12-06T11:56:16+00:00"
+ "time": "2026-07-04T14:30:18+00:00"
},
{
"name": "nunomaduro/termwind",
@@ -4118,16 +4047,16 @@
},
{
"name": "phpstan/phpdoc-parser",
- "version": "2.3.2",
+ "version": "2.3.3",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpdoc-parser.git",
- "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a"
+ "reference": "fb19eedd2bb67ff8cf7a5502ad329e701d6398a3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/a004701b11273a26cd7955a61d67a7f1e525a45a",
- "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a",
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fb19eedd2bb67ff8cf7a5502ad329e701d6398a3",
+ "reference": "fb19eedd2bb67ff8cf7a5502ad329e701d6398a3",
"shasum": ""
},
"require": {
@@ -4159,9 +4088,9 @@
"description": "PHPDoc parser with support for nullable, intersection and generic types",
"support": {
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
- "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.2"
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.3"
},
- "time": "2026-01-25T14:56:51+00:00"
+ "time": "2026-07-08T07:01:06+00:00"
},
{
"name": "psr/clock",
@@ -4916,99 +4845,29 @@
],
"time": "2026-03-11T13:48:28+00:00"
},
- {
- "name": "spatie/error-solutions",
- "version": "2.0.5",
- "source": {
- "type": "git",
- "url": "https://github.com/spatie/error-solutions.git",
- "reference": "0392eff7f36f01249a6e9f8eb22a7d54651881bc"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spatie/error-solutions/zipball/0392eff7f36f01249a6e9f8eb22a7d54651881bc",
- "reference": "0392eff7f36f01249a6e9f8eb22a7d54651881bc",
- "shasum": ""
- },
- "require": {
- "php": "^8.2"
- },
- "require-dev": {
- "illuminate/broadcasting": "^10.0|^11.0|^12.0|^13.0",
- "illuminate/cache": "^10.0|^11.0|^12.0|^13.0",
- "illuminate/support": "^10.0|^11.0|^12.0|^13.0",
- "livewire/livewire": "^2.11|^3.5.20|^4.0",
- "openai-php/client": "^0.13.0",
- "orchestra/testbench": "8.22.3|^9.0|^10.0|^11.0",
- "pestphp/pest": "^2.20|^3.0",
- "phpstan/phpstan": "^2.1",
- "psr/simple-cache": "^3.0",
- "psr/simple-cache-implementation": "^3.0",
- "spatie/ray": "^1.28",
- "symfony/cache": "^5.4|^6.0|^7.0|^8.0",
- "symfony/process": "^5.4|^6.0|^7.0|^8.0",
- "vlucas/phpdotenv": "^5.5"
- },
- "suggest": {
- "openai-php/client": "Require get solutions from OpenAI",
- "simple-cache-implementation": "To cache solutions from OpenAI"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spatie\\ErrorSolutions\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Ruben Van Assche",
- "email": "ruben@spatie.be",
- "role": "Developer"
- }
- ],
- "description": "This is my package error-solutions",
- "homepage": "https://github.com/spatie/error-solutions",
- "keywords": [
- "error-solutions",
- "spatie"
- ],
- "support": {
- "issues": "https://github.com/spatie/error-solutions/issues",
- "source": "https://github.com/spatie/error-solutions/tree/2.0.5"
- },
- "funding": [
- {
- "url": "https://github.com/Spatie",
- "type": "github"
- }
- ],
- "time": "2026-02-27T15:32:49+00:00"
- },
{
"name": "spatie/flare-client-php",
- "version": "2.10.2",
+ "version": "3.3.1",
"source": {
"type": "git",
"url": "https://github.com/spatie/flare-client-php.git",
- "reference": "056aa9cb10e41d7490d51d2f15875143e6d12ce2"
+ "reference": "e045814eefd9f5862ec69aec6fc53b03838e2c92"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/056aa9cb10e41d7490d51d2f15875143e6d12ce2",
- "reference": "056aa9cb10e41d7490d51d2f15875143e6d12ce2",
+ "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/e045814eefd9f5862ec69aec6fc53b03838e2c92",
+ "reference": "e045814eefd9f5862ec69aec6fc53b03838e2c92",
"shasum": ""
},
"require": {
"ext-curl": "*",
- "guzzlehttp/guzzle": "^7.9",
- "php": "^8.2",
+ "guzzlehttp/guzzle": "^7.9|^8.0",
+ "monolog/monolog": "^3.0",
+ "php": "^8.1",
"psr/container": "^2.0",
"spatie/backtrace": "^1.8.0",
- "spatie/error-solutions": "^2.0",
+ "spatie/flare-daemon": "^0.3",
+ "symfony/console": "^5.2|^6.0|^7.0|^8.0",
"symfony/http-foundation": "^5.2|^6.0|^7.0|^8.0",
"symfony/mime": "^5.2|^6.0|^7.0|^8.0",
"symfony/process": "^5.2|^6.0|^7.0|^8.0",
@@ -5018,14 +4877,16 @@
"friendsofphp/php-cs-fixer": "^3.89",
"pestphp/pest": "^2.36.0|^3.0|^4.0",
"phpstan/extension-installer": "^1.4",
- "phpstan/phpstan-deprecation-rules": "^1.2",
- "phpstan/phpstan-phpunit": "^1.4",
+ "phpstan/phpstan": "^2.0",
+ "phpstan/phpstan-deprecation-rules": "^2.0",
+ "phpstan/phpstan-phpunit": "^2.0",
+ "spatie/invade": "^2.1",
"spatie/pest-plugin-snapshots": "^2.2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.3.x-dev"
+ "dev-main": "3.x-dev"
}
},
"autoload": {
@@ -5047,7 +4908,7 @@
],
"support": {
"issues": "https://github.com/spatie/flare-client-php/issues",
- "source": "https://github.com/spatie/flare-client-php/tree/2.10.2"
+ "source": "https://github.com/spatie/flare-client-php/tree/3.3.1"
},
"funding": [
{
@@ -5055,25 +4916,94 @@
"type": "github"
}
],
- "time": "2026-02-23T14:14:53+00:00"
+ "time": "2026-07-22T06:40:58+00:00"
},
{
- "name": "spatie/laravel-error-share",
- "version": "1.0.9",
+ "name": "spatie/flare-daemon",
+ "version": "0.3.0",
"source": {
"type": "git",
- "url": "https://github.com/spatie/laravel-error-share.git",
- "reference": "52e65ee35a7f782e27460cb307cc97cec8332793"
+ "url": "https://github.com/spatie/flare-daemon.git",
+ "reference": "dfa1d156aac231a619f78974c983a78391e1e034"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-error-share/zipball/52e65ee35a7f782e27460cb307cc97cec8332793",
- "reference": "52e65ee35a7f782e27460cb307cc97cec8332793",
+ "url": "https://api.github.com/repos/spatie/flare-daemon/zipball/dfa1d156aac231a619f78974c983a78391e1e034",
+ "reference": "dfa1d156aac231a619f78974c983a78391e1e034",
"shasum": ""
},
"require": {
- "illuminate/contracts": "^12.50|^13.0",
- "php": "^8.2",
+ "composer-runtime-api": "^2.2",
+ "ext-zlib": "*",
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "laravel/pint": "^1.0",
+ "pestphp/pest": "^3.0 || ^4.0",
+ "phpstan/phpstan": "^2.1",
+ "react/async": "^4.3",
+ "spatie/flare-daemon-runtime": "*",
+ "spatie/ray": "^1.28",
+ "symfony/process": "^7.2"
+ },
+ "bin": [
+ "bin/flare-daemon"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Spatie\\FlareDaemon\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Alex Vanderbist",
+ "email": "alex@spatie.be",
+ "role": "Developer"
+ }
+ ],
+ "description": "Local HTTP daemon for asynchronous Flare delivery",
+ "homepage": "https://github.com/spatie/flare-daemon",
+ "keywords": [
+ "error-tracking",
+ "flare",
+ "flare-daemon",
+ "performance-monitoring",
+ "spatie"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/flare-daemon/issues",
+ "source": "https://github.com/spatie/flare-daemon/tree/0.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/spatie",
+ "type": "github"
+ }
+ ],
+ "time": "2026-07-02T15:29:10+00:00"
+ },
+ {
+ "name": "spatie/laravel-error-share",
+ "version": "1.0.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/laravel-error-share.git",
+ "reference": "f13247bff7d7849e5279cf78777191f53cb12568"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/laravel-error-share/zipball/f13247bff7d7849e5279cf78777191f53cb12568",
+ "reference": "f13247bff7d7849e5279cf78777191f53cb12568",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/contracts": "^10.0|^11.0|^12.50|^13.0",
+ "php": "^8.1",
"spatie/laravel-package-tools": "^1.16"
},
"require-dev": {
@@ -5129,7 +5059,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-error-share/issues",
- "source": "https://github.com/spatie/laravel-error-share/tree/1.0.9"
+ "source": "https://github.com/spatie/laravel-error-share/tree/1.0.10"
},
"funding": [
{
@@ -5137,51 +5067,46 @@
"type": "github"
}
],
- "time": "2026-05-11T08:16:59+00:00"
+ "time": "2026-07-03T07:49:45+00:00"
},
{
"name": "spatie/laravel-flare",
- "version": "2.8.0",
+ "version": "3.3.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-flare.git",
- "reference": "c2722a270ba2653baef2c9e29b893e28955717ce"
+ "reference": "6ef59eeba3bdf7561be849919f6058ad484ed151"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-flare/zipball/c2722a270ba2653baef2c9e29b893e28955717ce",
- "reference": "c2722a270ba2653baef2c9e29b893e28955717ce",
+ "url": "https://api.github.com/repos/spatie/laravel-flare/zipball/6ef59eeba3bdf7561be849919f6058ad484ed151",
+ "reference": "6ef59eeba3bdf7561be849919f6058ad484ed151",
"shasum": ""
},
"require": {
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
- "illuminate/support": "^11.46|^12.0|^13.0",
+ "illuminate/support": "^10.0|^11.47|^12.42|^13.0",
"php": "^8.2",
- "spatie/error-solutions": "^2.0",
- "spatie/flare-client-php": "^2.10.2",
+ "spatie/flare-client-php": "^3.3.0",
"spatie/laravel-error-share": "^1.0.3",
- "symfony/console": "^7.2.1|^8.0",
- "symfony/var-dumper": "^7.2.3|^8.0"
+ "symfony/console": "^6.4|^7.2.1|^8.0",
+ "symfony/var-dumper": "^6.4|^7.2.3|^8.0"
},
"require-dev": {
- "laravel/serializable-closure": "^2.0",
- "livewire/livewire": "^3.6.0|^4.0",
+ "laravel/serializable-closure": "^1.3|^2.0",
+ "livewire/livewire": "^3.6.0|^4.2",
"mockery/mockery": "^1.6.12",
- "openai-php/client": "^0.8.5",
- "orchestra/testbench": "^9.14|^10.8|^11.0",
+ "orchestra/testbench": "^8.31|^9.14|^10.8|^11.0",
"pestphp/pest": "^2.34|^3.7.4|^4.1",
"pestphp/pest-plugin-laravel": "^2.4|^3.0|^4.0",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan-deprecation-rules": "^1.1.1|^2.0.1",
"phpstan/phpstan-phpunit": "^1.3.16|^2.0.4",
+ "spatie/ray": "^1.45",
"vlucas/phpdotenv": "^5.6.1"
},
- "suggest": {
- "openai-php/client": "Required to get solutions from OpenAI",
- "psr/simple-cache-implementation": "Used to cache solutions from OpenAI"
- },
"type": "library",
"extra": {
"laravel": {
@@ -5228,7 +5153,7 @@
"type": "github"
}
],
- "time": "2026-04-08T13:26:20+00:00"
+ "time": "2026-07-15T08:06:53+00:00"
},
{
"name": "spatie/laravel-package-tools",
@@ -5293,20 +5218,20 @@
},
{
"name": "spomky-labs/cbor-php",
- "version": "3.2.3",
+ "version": "3.3.0",
"source": {
"type": "git",
"url": "https://github.com/Spomky-Labs/cbor-php.git",
- "reference": "dd6eb84e6d92f7b8bd0da56b4b4dd7235aed0c32"
+ "reference": "013d13da69cf28b1ae501887daceccc850ca1c76"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Spomky-Labs/cbor-php/zipball/dd6eb84e6d92f7b8bd0da56b4b4dd7235aed0c32",
- "reference": "dd6eb84e6d92f7b8bd0da56b4b4dd7235aed0c32",
+ "url": "https://api.github.com/repos/Spomky-Labs/cbor-php/zipball/013d13da69cf28b1ae501887daceccc850ca1c76",
+ "reference": "013d13da69cf28b1ae501887daceccc850ca1c76",
"shasum": ""
},
"require": {
- "brick/math": "^0.9|^0.10|^0.11|^0.12|^0.13|^0.14|^0.15|^0.16|^0.17",
+ "brick/math": "^0.9|^0.10|^0.11|^0.12|^0.13|^0.14|^0.15|^0.16|^0.17|^0.18",
"ext-mbstring": "*",
"php": ">=8.0"
},
@@ -5348,7 +5273,7 @@
],
"support": {
"issues": "https://github.com/Spomky-Labs/cbor-php/issues",
- "source": "https://github.com/Spomky-Labs/cbor-php/tree/3.2.3"
+ "source": "https://github.com/Spomky-Labs/cbor-php/tree/3.3.0"
},
"funding": [
{
@@ -5360,45 +5285,44 @@
"type": "patreon"
}
],
- "time": "2026-04-01T12:15:20+00:00"
+ "time": "2026-07-15T18:56:27+00:00"
},
{
"name": "spomky-labs/pki-framework",
- "version": "1.4.2",
+ "version": "1.5.0",
"source": {
"type": "git",
"url": "https://github.com/Spomky-Labs/pki-framework.git",
- "reference": "aa576cbd07128075bef97ac2f8af9854e67513d8"
+ "reference": "e0d61661962560c1cedfef02b51b431e720aae78"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Spomky-Labs/pki-framework/zipball/aa576cbd07128075bef97ac2f8af9854e67513d8",
- "reference": "aa576cbd07128075bef97ac2f8af9854e67513d8",
+ "url": "https://api.github.com/repos/Spomky-Labs/pki-framework/zipball/e0d61661962560c1cedfef02b51b431e720aae78",
+ "reference": "e0d61661962560c1cedfef02b51b431e720aae78",
"shasum": ""
},
"require": {
- "brick/math": "^0.10|^0.11|^0.12|^0.13|^0.14|^0.15|^0.16|^0.17",
+ "brick/math": "^0.10|^0.11|^0.12|^0.13|^0.14|^0.15|^0.16|^0.17|^0.18",
"ext-mbstring": "*",
- "php": ">=8.1",
- "psr/clock": "^1.0"
+ "php": ">=8.1"
},
"require-dev": {
"ekino/phpstan-banned-code": "^1.0|^2.0|^3.0",
"ext-gmp": "*",
"ext-openssl": "*",
- "infection/infection": "^0.28|^0.29|^0.31|^0.32",
+ "infection/infection": "^0.28|^0.29|^0.31",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.3|^2.0",
"phpstan/phpstan": "^1.8|^2.0",
"phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
"phpstan/phpstan-phpunit": "^1.1|^2.0",
"phpstan/phpstan-strict-rules": "^1.3|^2.0",
- "phpunit/phpunit": "^10.1|^11.0|^12.0|^13.0",
+ "phpunit/phpunit": "^10.1|^11.0|^12.0",
"rector/rector": "^1.0|^2.0",
"roave/security-advisories": "dev-latest",
"symfony/string": "^6.4|^7.0|^8.0",
"symfony/var-dumper": "^6.4|^7.0|^8.0",
- "symplify/easy-coding-standard": "^12.0|^13.0"
+ "symplify/easy-coding-standard": "^12.0 || ^13.0"
},
"suggest": {
"ext-bcmath": "For better performance (or GMP)",
@@ -5458,7 +5382,7 @@
],
"support": {
"issues": "https://github.com/Spomky-Labs/pki-framework/issues",
- "source": "https://github.com/Spomky-Labs/pki-framework/tree/1.4.2"
+ "source": "https://github.com/Spomky-Labs/pki-framework/tree/1.5.0"
},
"funding": [
{
@@ -5470,7 +5394,7 @@
"type": "patreon"
}
],
- "time": "2026-03-23T22:56:56+00:00"
+ "time": "2026-07-16T10:28:45+00:00"
},
{
"name": "symfony/clock",
@@ -8638,16 +8562,16 @@
},
{
"name": "vlucas/phpdotenv",
- "version": "v5.6.3",
+ "version": "v5.6.4",
"source": {
"type": "git",
"url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "955e7815d677a3eaa7075231212f2110983adecc"
+ "reference": "416df702837983f8d5ff48c9c3fee4f5f57b980b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
- "reference": "955e7815d677a3eaa7075231212f2110983adecc",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/416df702837983f8d5ff48c9c3fee4f5f57b980b",
+ "reference": "416df702837983f8d5ff48c9c3fee4f5f57b980b",
"shasum": ""
},
"require": {
@@ -8706,7 +8630,7 @@
],
"support": {
"issues": "https://github.com/vlucas/phpdotenv/issues",
- "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
+ "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.4"
},
"funding": [
{
@@ -8718,7 +8642,7 @@
"type": "tidelift"
}
],
- "time": "2025-12-27T19:49:13+00:00"
+ "time": "2026-07-06T19:11:50+00:00"
},
{
"name": "voku/portable-ascii",
@@ -8796,20 +8720,20 @@
},
{
"name": "web-auth/cose-lib",
- "version": "4.5.2",
+ "version": "4.6.0",
"source": {
"type": "git",
"url": "https://github.com/web-auth/cose-lib.git",
- "reference": "5b38660f90070a8e45f3dbc9528ade3b608dd77d"
+ "reference": "3afe04df137baf97c5c3e28c5ee6f05536405148"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/web-auth/cose-lib/zipball/5b38660f90070a8e45f3dbc9528ade3b608dd77d",
- "reference": "5b38660f90070a8e45f3dbc9528ade3b608dd77d",
+ "url": "https://api.github.com/repos/web-auth/cose-lib/zipball/3afe04df137baf97c5c3e28c5ee6f05536405148",
+ "reference": "3afe04df137baf97c5c3e28c5ee6f05536405148",
"shasum": ""
},
"require": {
- "brick/math": "^0.9|^0.10|^0.11|^0.12|^0.13|^0.14|^0.15|^0.16|^0.17",
+ "brick/math": "^0.9|^0.10|^0.11|^0.12|^0.13|^0.14|^0.15|^0.16|^0.17|^0.18",
"ext-json": "*",
"ext-openssl": "*",
"php": ">=8.1",
@@ -8851,7 +8775,7 @@
],
"support": {
"issues": "https://github.com/web-auth/cose-lib/issues",
- "source": "https://github.com/web-auth/cose-lib/tree/4.5.2"
+ "source": "https://github.com/web-auth/cose-lib/tree/4.6.0"
},
"funding": [
{
@@ -8863,7 +8787,7 @@
"type": "patreon"
}
],
- "time": "2026-05-03T09:49:50+00:00"
+ "time": "2026-07-16T10:19:49+00:00"
},
{
"name": "web-auth/webauthn-lib",
@@ -9021,16 +8945,16 @@
"packages-dev": [
{
"name": "barryvdh/laravel-debugbar",
- "version": "v4.3.0",
+ "version": "v4.4.0",
"source": {
"type": "git",
"url": "https://github.com/fruitcake/laravel-debugbar.git",
- "reference": "3d76ea8d78b82225b92789de65fc630c1cd8e80c"
+ "reference": "80ef956bda9e1a5824037d6f2cd06e73092e5634"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fruitcake/laravel-debugbar/zipball/3d76ea8d78b82225b92789de65fc630c1cd8e80c",
- "reference": "3d76ea8d78b82225b92789de65fc630c1cd8e80c",
+ "url": "https://api.github.com/repos/fruitcake/laravel-debugbar/zipball/80ef956bda9e1a5824037d6f2cd06e73092e5634",
+ "reference": "80ef956bda9e1a5824037d6f2cd06e73092e5634",
"shasum": ""
},
"require": {
@@ -9038,11 +8962,12 @@
"illuminate/session": "^11|^12|^13.0",
"illuminate/support": "^11|^12|^13.0",
"php": "^8.2",
- "php-debugbar/php-debugbar": "^3.7.2",
+ "php-debugbar/php-debugbar": "^3.8.0",
"php-debugbar/symfony-bridge": "^1.1"
},
"require-dev": {
"larastan/larastan": "^3",
+ "laravel/ai": "^0.8",
"laravel/octane": "^2",
"laravel/pennant": "^1",
"laravel/pint": "^1",
@@ -9104,7 +9029,7 @@
],
"support": {
"issues": "https://github.com/fruitcake/laravel-debugbar/issues",
- "source": "https://github.com/fruitcake/laravel-debugbar/tree/v4.3.0"
+ "source": "https://github.com/fruitcake/laravel-debugbar/tree/v4.4.0"
},
"funding": [
{
@@ -9116,7 +9041,7 @@
"type": "github"
}
],
- "time": "2026-06-04T07:54:01+00:00"
+ "time": "2026-07-04T08:30:57+00:00"
},
{
"name": "barryvdh/laravel-ide-helper",
@@ -9819,16 +9744,16 @@
},
{
"name": "laravel/sail",
- "version": "v1.63.0",
+ "version": "v1.64.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/sail.git",
- "reference": "51bbce3f803c1d386cabbb44e618c955a12ff5fc"
+ "reference": "08cacd3e72d6798df3fa8bd4b5d55d0f7f920625"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/sail/zipball/51bbce3f803c1d386cabbb44e618c955a12ff5fc",
- "reference": "51bbce3f803c1d386cabbb44e618c955a12ff5fc",
+ "url": "https://api.github.com/repos/laravel/sail/zipball/08cacd3e72d6798df3fa8bd4b5d55d0f7f920625",
+ "reference": "08cacd3e72d6798df3fa8bd4b5d55d0f7f920625",
"shasum": ""
},
"require": {
@@ -9878,7 +9803,7 @@
"issues": "https://github.com/laravel/sail/issues",
"source": "https://github.com/laravel/sail"
},
- "time": "2026-06-18T08:54:14+00:00"
+ "time": "2026-07-17T15:09:35+00:00"
},
{
"name": "mockery/mockery",
@@ -10025,23 +9950,23 @@
},
{
"name": "nunomaduro/collision",
- "version": "v8.9.4",
+ "version": "v8.9.5",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/collision.git",
- "reference": "716af8f95a470e9094cfca09ed897b023be191a5"
+ "reference": "fb53eacd509a1d303858e2d20cfebf2d630254ec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/collision/zipball/716af8f95a470e9094cfca09ed897b023be191a5",
- "reference": "716af8f95a470e9094cfca09ed897b023be191a5",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/fb53eacd509a1d303858e2d20cfebf2d630254ec",
+ "reference": "fb53eacd509a1d303858e2d20cfebf2d630254ec",
"shasum": ""
},
"require": {
"filp/whoops": "^2.18.4",
"nunomaduro/termwind": "^2.4.0",
"php": "^8.2.0",
- "symfony/console": "^7.4.8 || ^8.0.8"
+ "symfony/console": "^7.4.14 || ^8.1.1"
},
"conflict": {
"laravel/framework": "<11.48.0 || >=14.0.0",
@@ -10049,12 +9974,12 @@
},
"require-dev": {
"brianium/paratest": "^7.8.5",
- "larastan/larastan": "^3.9.6",
- "laravel/framework": "^11.48.0 || ^12.56.0 || ^13.5.0",
- "laravel/pint": "^1.29.1",
- "orchestra/testbench-core": "^9.12.0 || ^10.12.1 || ^11.2.1",
- "pestphp/pest": "^3.8.5 || ^4.4.3 || ^5.0.0",
- "sebastian/environment": "^7.2.1 || ^8.0.4 || ^9.3.0"
+ "larastan/larastan": "^3.10.0",
+ "laravel/framework": "^11.48.0 || ^12.56.0 || ^13.20.0",
+ "laravel/pint": "^1.29.3",
+ "orchestra/testbench-core": "^9.12.0 || ^10.12.1 || ^11.3.5",
+ "pestphp/pest": "^3.8.5 || ^4.7.5 || ^5.0.0",
+ "sebastian/environment": "^7.2.1 || ^8.1.2 || ^9.3.2"
},
"type": "library",
"extra": {
@@ -10117,7 +10042,7 @@
"type": "patreon"
}
],
- "time": "2026-04-21T14:04:20+00:00"
+ "time": "2026-07-15T19:09:14+00:00"
},
{
"name": "permafrost-dev/code-snippets",
@@ -10366,16 +10291,16 @@
},
{
"name": "php-debugbar/php-debugbar",
- "version": "v3.7.6",
+ "version": "v3.8.0",
"source": {
"type": "git",
"url": "https://github.com/php-debugbar/php-debugbar.git",
- "reference": "1690ee1728827f9deb4b60457fa387cf44672c56"
+ "reference": "18ced90d4b882ed449b2278fea8692f8f7d1c13c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/1690ee1728827f9deb4b60457fa387cf44672c56",
- "reference": "1690ee1728827f9deb4b60457fa387cf44672c56",
+ "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/18ced90d4b882ed449b2278fea8692f8f7d1c13c",
+ "reference": "18ced90d4b882ed449b2278fea8692f8f7d1c13c",
"shasum": ""
},
"require": {
@@ -10417,7 +10342,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "3.8-dev"
}
},
"autoload": {
@@ -10452,7 +10377,7 @@
],
"support": {
"issues": "https://github.com/php-debugbar/php-debugbar/issues",
- "source": "https://github.com/php-debugbar/php-debugbar/tree/v3.7.6"
+ "source": "https://github.com/php-debugbar/php-debugbar/tree/v3.8.0"
},
"funding": [
{
@@ -10464,7 +10389,7 @@
"type": "github"
}
],
- "time": "2026-04-30T07:31:44+00:00"
+ "time": "2026-07-02T12:38:20+00:00"
},
{
"name": "php-debugbar/symfony-bridge",
@@ -10728,33 +10653,35 @@
},
{
"name": "phpunit/php-code-coverage",
- "version": "12.5.7",
+ "version": "14.2.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "186dab580576598076de6818596d12b61801880e"
+ "reference": "82f6e49ff224e2cde923d74425e583a883910783"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/186dab580576598076de6818596d12b61801880e",
- "reference": "186dab580576598076de6818596d12b61801880e",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/82f6e49ff224e2cde923d74425e583a883910783",
+ "reference": "82f6e49ff224e2cde923d74425e583a883910783",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-libxml": "*",
+ "ext-mbstring": "*",
"ext-xmlwriter": "*",
- "nikic/php-parser": "^5.7.0",
- "php": ">=8.3",
- "phpunit/php-text-template": "^5.0",
- "sebastian/complexity": "^5.0",
- "sebastian/environment": "^8.1.2",
- "sebastian/lines-of-code": "^4.0.1",
- "sebastian/version": "^6.0",
+ "nikic/php-parser": "^5.8.0",
+ "php": ">=8.4",
+ "phpunit/php-text-template": "^6.0",
+ "sebastian/complexity": "^6.0",
+ "sebastian/environment": "^9.3.2",
+ "sebastian/git-state": "^1.0",
+ "sebastian/lines-of-code": "^5.0.1",
+ "sebastian/version": "^7.0",
"theseer/tokenizer": "^2.0.1"
},
"require-dev": {
- "phpunit/phpunit": "^12.5.28"
+ "phpunit/phpunit": "^13.2.2"
},
"suggest": {
"ext-pcov": "PHP extension that provides line coverage",
@@ -10763,7 +10690,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "12.5.x-dev"
+ "dev-main": "14.2.x-dev"
}
},
"autoload": {
@@ -10792,7 +10719,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
"security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.5.7"
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/14.2.3"
},
"funding": [
{
@@ -10812,32 +10739,32 @@
"type": "tidelift"
}
],
- "time": "2026-06-01T13:24:19+00:00"
+ "time": "2026-07-06T15:04:02+00:00"
},
{
"name": "phpunit/php-file-iterator",
- "version": "6.0.1",
+ "version": "7.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5"
+ "reference": "6e5aa1fb0a95b1703d83e721299ee18bb4e2de50"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5",
- "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6e5aa1fb0a95b1703d83e721299ee18bb4e2de50",
+ "reference": "6e5aa1fb0a95b1703d83e721299ee18bb4e2de50",
"shasum": ""
},
"require": {
- "php": ">=8.3"
+ "php": ">=8.4"
},
"require-dev": {
- "phpunit/phpunit": "^12.0"
+ "phpunit/phpunit": "^13.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "6.0-dev"
+ "dev-main": "7.0-dev"
}
},
"autoload": {
@@ -10865,7 +10792,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
"security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
- "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.1"
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/7.0.0"
},
"funding": [
{
@@ -10885,28 +10812,28 @@
"type": "tidelift"
}
],
- "time": "2026-02-02T14:04:18+00:00"
+ "time": "2026-02-06T04:33:26+00:00"
},
{
"name": "phpunit/php-invoker",
- "version": "6.0.0",
+ "version": "7.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-invoker.git",
- "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406"
+ "reference": "42e5c5cae0c65df12d1b1a3ab52bf3f50f244d88"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406",
- "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/42e5c5cae0c65df12d1b1a3ab52bf3f50f244d88",
+ "reference": "42e5c5cae0c65df12d1b1a3ab52bf3f50f244d88",
"shasum": ""
},
"require": {
- "php": ">=8.3"
+ "php": ">=8.4"
},
"require-dev": {
"ext-pcntl": "*",
- "phpunit/phpunit": "^12.0"
+ "phpunit/phpunit": "^13.0"
},
"suggest": {
"ext-pcntl": "*"
@@ -10914,7 +10841,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "6.0-dev"
+ "dev-main": "7.0-dev"
}
},
"autoload": {
@@ -10941,40 +10868,52 @@
"support": {
"issues": "https://github.com/sebastianbergmann/php-invoker/issues",
"security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
- "source": "https://github.com/sebastianbergmann/php-invoker/tree/6.0.0"
+ "source": "https://github.com/sebastianbergmann/php-invoker/tree/7.0.0"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/php-invoker",
+ "type": "tidelift"
}
],
- "time": "2025-02-07T04:58:58+00:00"
+ "time": "2026-02-06T04:34:47+00:00"
},
{
"name": "phpunit/php-text-template",
- "version": "5.0.0",
+ "version": "6.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-text-template.git",
- "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53"
+ "reference": "a47af19f93f76aa3368303d752aa5272ca3299f4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53",
- "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/a47af19f93f76aa3368303d752aa5272ca3299f4",
+ "reference": "a47af19f93f76aa3368303d752aa5272ca3299f4",
"shasum": ""
},
"require": {
- "php": ">=8.3"
+ "php": ">=8.4"
},
"require-dev": {
- "phpunit/phpunit": "^12.0"
+ "phpunit/phpunit": "^13.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "5.0-dev"
+ "dev-main": "6.0-dev"
}
},
"autoload": {
@@ -11001,40 +10940,52 @@
"support": {
"issues": "https://github.com/sebastianbergmann/php-text-template/issues",
"security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
- "source": "https://github.com/sebastianbergmann/php-text-template/tree/5.0.0"
+ "source": "https://github.com/sebastianbergmann/php-text-template/tree/6.0.0"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/php-text-template",
+ "type": "tidelift"
}
],
- "time": "2025-02-07T04:59:16+00:00"
+ "time": "2026-02-06T04:36:37+00:00"
},
{
"name": "phpunit/php-timer",
- "version": "8.0.0",
+ "version": "9.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc"
+ "reference": "a0e12065831f6ab0d83120dc61513eb8d9a966f6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
- "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/a0e12065831f6ab0d83120dc61513eb8d9a966f6",
+ "reference": "a0e12065831f6ab0d83120dc61513eb8d9a966f6",
"shasum": ""
},
"require": {
- "php": ">=8.3"
+ "php": ">=8.4"
},
"require-dev": {
- "phpunit/phpunit": "^12.0"
+ "phpunit/phpunit": "^13.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "8.0-dev"
+ "dev-main": "9.0-dev"
}
},
"autoload": {
@@ -11061,56 +11012,70 @@
"support": {
"issues": "https://github.com/sebastianbergmann/php-timer/issues",
"security": "https://github.com/sebastianbergmann/php-timer/security/policy",
- "source": "https://github.com/sebastianbergmann/php-timer/tree/8.0.0"
+ "source": "https://github.com/sebastianbergmann/php-timer/tree/9.0.0"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/php-timer",
+ "type": "tidelift"
}
],
- "time": "2025-02-07T04:59:38+00:00"
+ "time": "2026-02-06T04:37:53+00:00"
},
{
"name": "phpunit/phpunit",
- "version": "12.5.30",
+ "version": "13.2.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "900400a5b616d6fb306f9549f6da33ba615d3fbb"
+ "reference": "2beef9f448c9e04914a273c89ff6d039f8b97bc8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/900400a5b616d6fb306f9549f6da33ba615d3fbb",
- "reference": "900400a5b616d6fb306f9549f6da33ba615d3fbb",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/2beef9f448c9e04914a273c89ff6d039f8b97bc8",
+ "reference": "2beef9f448c9e04914a273c89ff6d039f8b97bc8",
"shasum": ""
},
"require": {
"ext-dom": "*",
+ "ext-filter": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
- "ext-xml": "*",
"ext-xmlwriter": "*",
"myclabs/deep-copy": "^1.13.4",
"phar-io/manifest": "^2.0.4",
"phar-io/version": "^3.2.1",
- "php": ">=8.3",
- "phpunit/php-code-coverage": "^12.5.7",
- "phpunit/php-file-iterator": "^6.0.1",
- "phpunit/php-invoker": "^6.0.0",
- "phpunit/php-text-template": "^5.0.0",
- "phpunit/php-timer": "^8.0.0",
- "sebastian/cli-parser": "^4.2.1",
- "sebastian/comparator": "^7.1.8",
- "sebastian/diff": "^7.0.0",
- "sebastian/environment": "^8.1.2",
- "sebastian/exporter": "^7.0.3",
- "sebastian/global-state": "^8.0.3",
- "sebastian/object-enumerator": "^7.0.0",
- "sebastian/recursion-context": "^7.0.1",
- "sebastian/type": "^6.0.4",
- "sebastian/version": "^6.0.0",
+ "php": ">=8.4.1",
+ "phpunit/php-code-coverage": "^14.2.3",
+ "phpunit/php-file-iterator": "^7.0.0",
+ "phpunit/php-invoker": "^7.0.0",
+ "phpunit/php-text-template": "^6.0.0",
+ "phpunit/php-timer": "^9.0.0",
+ "sebastian/cli-parser": "^5.0.0",
+ "sebastian/comparator": "^8.3.0",
+ "sebastian/diff": "^9.0",
+ "sebastian/environment": "^9.3.2",
+ "sebastian/exporter": "^8.1.1",
+ "sebastian/file-filter": "^1.0",
+ "sebastian/git-state": "^1.0",
+ "sebastian/global-state": "^9.0.1",
+ "sebastian/object-enumerator": "^8.0.0",
+ "sebastian/recursion-context": "^8.0.0",
+ "sebastian/type": "^7.0.1",
+ "sebastian/version": "^7.0.0",
"staabm/side-effects-detector": "^1.0.5"
},
"bin": [
@@ -11119,7 +11084,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "12.5-dev"
+ "dev-main": "13.2-dev"
}
},
"autoload": {
@@ -11151,7 +11116,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/12.5.30"
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/13.2.5"
},
"funding": [
{
@@ -11159,32 +11124,32 @@
"type": "other"
}
],
- "time": "2026-06-15T13:12:30+00:00"
+ "time": "2026-07-25T06:59:14+00:00"
},
{
"name": "sebastian/cli-parser",
- "version": "4.2.1",
+ "version": "5.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/cli-parser.git",
- "reference": "7d05781b13f7dec9043a629a21d086ed74582a15"
+ "reference": "48a4654fa5e48c1c81214e9930048a572d4b23ca"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/7d05781b13f7dec9043a629a21d086ed74582a15",
- "reference": "7d05781b13f7dec9043a629a21d086ed74582a15",
+ "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/48a4654fa5e48c1c81214e9930048a572d4b23ca",
+ "reference": "48a4654fa5e48c1c81214e9930048a572d4b23ca",
"shasum": ""
},
"require": {
- "php": ">=8.3"
+ "php": ">=8.4"
},
"require-dev": {
- "phpunit/phpunit": "^12.5.25"
+ "phpunit/phpunit": "^13.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "4.2-dev"
+ "dev-main": "5.0-dev"
}
},
"autoload": {
@@ -11208,7 +11173,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/cli-parser/issues",
"security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
- "source": "https://github.com/sebastianbergmann/cli-parser/tree/4.2.1"
+ "source": "https://github.com/sebastianbergmann/cli-parser/tree/5.0.0"
},
"funding": [
{
@@ -11228,31 +11193,31 @@
"type": "tidelift"
}
],
- "time": "2026-05-17T05:29:34+00:00"
+ "time": "2026-02-06T04:39:44+00:00"
},
{
"name": "sebastian/comparator",
- "version": "7.1.8",
+ "version": "8.3.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "7c65c1e79836812819705b473a90c12399542485"
+ "reference": "c025fc7604afab3f195fab7cdaf72327331af241"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/7c65c1e79836812819705b473a90c12399542485",
- "reference": "7c65c1e79836812819705b473a90c12399542485",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/c025fc7604afab3f195fab7cdaf72327331af241",
+ "reference": "c025fc7604afab3f195fab7cdaf72327331af241",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-mbstring": "*",
- "php": ">=8.3",
- "sebastian/diff": "^7.0",
- "sebastian/exporter": "^7.0.3"
+ "php": ">=8.4",
+ "sebastian/diff": "^9.0",
+ "sebastian/exporter": "^8.1.0"
},
"require-dev": {
- "phpunit/phpunit": "^12.5.25"
+ "phpunit/phpunit": "^13.2"
},
"suggest": {
"ext-bcmath": "For comparing BcMath\\Number objects"
@@ -11260,7 +11225,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "7.1-dev"
+ "dev-main": "8.3-dev"
}
},
"autoload": {
@@ -11300,7 +11265,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/comparator/issues",
"security": "https://github.com/sebastianbergmann/comparator/security/policy",
- "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.8"
+ "source": "https://github.com/sebastianbergmann/comparator/tree/8.3.0"
},
"funding": [
{
@@ -11320,33 +11285,33 @@
"type": "tidelift"
}
],
- "time": "2026-05-21T04:45:25+00:00"
+ "time": "2026-06-05T03:06:45+00:00"
},
{
"name": "sebastian/complexity",
- "version": "5.0.0",
+ "version": "6.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/complexity.git",
- "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb"
+ "reference": "c5651c795c98093480df79350cb050813fc7a2f3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb",
- "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb",
+ "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/c5651c795c98093480df79350cb050813fc7a2f3",
+ "reference": "c5651c795c98093480df79350cb050813fc7a2f3",
"shasum": ""
},
"require": {
"nikic/php-parser": "^5.0",
- "php": ">=8.3"
+ "php": ">=8.4"
},
"require-dev": {
- "phpunit/phpunit": "^12.0"
+ "phpunit/phpunit": "^13.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "5.0-dev"
+ "dev-main": "6.0-dev"
}
},
"autoload": {
@@ -11370,41 +11335,53 @@
"support": {
"issues": "https://github.com/sebastianbergmann/complexity/issues",
"security": "https://github.com/sebastianbergmann/complexity/security/policy",
- "source": "https://github.com/sebastianbergmann/complexity/tree/5.0.0"
+ "source": "https://github.com/sebastianbergmann/complexity/tree/6.0.0"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/complexity",
+ "type": "tidelift"
}
],
- "time": "2025-02-07T04:55:25+00:00"
+ "time": "2026-02-06T04:41:32+00:00"
},
{
"name": "sebastian/diff",
- "version": "7.0.0",
+ "version": "9.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "7ab1ea946c012266ca32390913653d844ecd085f"
+ "reference": "a3fb6a298a265ff487a91bbea46e03cd01dbb226"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f",
- "reference": "7ab1ea946c012266ca32390913653d844ecd085f",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/a3fb6a298a265ff487a91bbea46e03cd01dbb226",
+ "reference": "a3fb6a298a265ff487a91bbea46e03cd01dbb226",
"shasum": ""
},
"require": {
- "php": ">=8.3"
+ "php": ">=8.4"
},
"require-dev": {
- "phpunit/phpunit": "^12.0",
- "symfony/process": "^7.2"
+ "phpunit/phpunit": "^13.2",
+ "symfony/process": "^7.4.13"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "7.0-dev"
+ "dev-main": "9.0-dev"
}
},
"autoload": {
@@ -11437,35 +11414,47 @@
"support": {
"issues": "https://github.com/sebastianbergmann/diff/issues",
"security": "https://github.com/sebastianbergmann/diff/security/policy",
- "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0"
+ "source": "https://github.com/sebastianbergmann/diff/tree/9.0.0"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/diff",
+ "type": "tidelift"
}
],
- "time": "2025-02-07T04:55:46+00:00"
+ "time": "2026-06-05T03:04:51+00:00"
},
{
"name": "sebastian/environment",
- "version": "8.1.2",
+ "version": "9.3.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "9d32c685773823b1983e256ae4ecd48a10d6e439"
+ "reference": "6c9e487c9eb706a8d258102a1c0b0a3e53e86c2e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/9d32c685773823b1983e256ae4ecd48a10d6e439",
- "reference": "9d32c685773823b1983e256ae4ecd48a10d6e439",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6c9e487c9eb706a8d258102a1c0b0a3e53e86c2e",
+ "reference": "6c9e487c9eb706a8d258102a1c0b0a3e53e86c2e",
"shasum": ""
},
"require": {
- "php": ">=8.3"
+ "php": ">=8.4"
},
"require-dev": {
- "phpunit/phpunit": "^12.5.26"
+ "phpunit/phpunit": "^13.1.11"
},
"suggest": {
"ext-posix": "*"
@@ -11473,7 +11462,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "8.1-dev"
+ "dev-main": "9.3-dev"
}
},
"autoload": {
@@ -11501,7 +11490,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/environment/issues",
"security": "https://github.com/sebastianbergmann/environment/security/policy",
- "source": "https://github.com/sebastianbergmann/environment/tree/8.1.2"
+ "source": "https://github.com/sebastianbergmann/environment/tree/9.3.2"
},
"funding": [
{
@@ -11521,34 +11510,34 @@
"type": "tidelift"
}
],
- "time": "2026-05-25T13:40:20+00:00"
+ "time": "2026-05-25T13:41:38+00:00"
},
{
"name": "sebastian/exporter",
- "version": "7.0.3",
+ "version": "8.1.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "c5e21b5de653ce0a769fb36f5cdfcb5e7a32cf23"
+ "reference": "cfaa77c750dcad6f44c9bac8f62ac486e1c82c26"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c5e21b5de653ce0a769fb36f5cdfcb5e7a32cf23",
- "reference": "c5e21b5de653ce0a769fb36f5cdfcb5e7a32cf23",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/cfaa77c750dcad6f44c9bac8f62ac486e1c82c26",
+ "reference": "cfaa77c750dcad6f44c9bac8f62ac486e1c82c26",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
- "php": ">=8.3",
- "sebastian/recursion-context": "^7.0.1"
+ "php": ">=8.4",
+ "sebastian/recursion-context": "^8.0"
},
"require-dev": {
- "phpunit/phpunit": "^12.5.25"
+ "phpunit/phpunit": "^13.2.4"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "7.0-dev"
+ "dev-main": "8.1-dev"
}
},
"autoload": {
@@ -11591,7 +11580,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/exporter/issues",
"security": "https://github.com/sebastianbergmann/exporter/security/policy",
- "source": "https://github.com/sebastianbergmann/exporter/tree/7.0.3"
+ "source": "https://github.com/sebastianbergmann/exporter/tree/8.1.1"
},
"funding": [
{
@@ -11611,35 +11600,173 @@
"type": "tidelift"
}
],
- "time": "2026-05-20T04:37:17+00:00"
+ "time": "2026-07-13T11:35:11+00:00"
},
{
- "name": "sebastian/global-state",
- "version": "8.0.3",
+ "name": "sebastian/file-filter",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "b164d3274d6537ab462591c5755f76a8f5b1aae9"
+ "url": "https://github.com/sebastianbergmann/file-filter.git",
+ "reference": "33a26f394330f6faa7684bb9cc73afb7727aae93"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b164d3274d6537ab462591c5755f76a8f5b1aae9",
- "reference": "b164d3274d6537ab462591c5755f76a8f5b1aae9",
+ "url": "https://api.github.com/repos/sebastianbergmann/file-filter/zipball/33a26f394330f6faa7684bb9cc73afb7727aae93",
+ "reference": "33a26f394330f6faa7684bb9cc73afb7727aae93",
"shasum": ""
},
"require": {
- "php": ">=8.3",
- "sebastian/object-reflector": "^5.0",
- "sebastian/recursion-context": "^7.0.1"
+ "php": ">=8.4"
},
"require-dev": {
- "ext-dom": "*",
- "phpunit/phpunit": "^12.5.28"
+ "phpunit/phpunit": "^13.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "8.0-dev"
+ "dev-main": "1.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for filtering files",
+ "homepage": "https://github.com/sebastianbergmann/file-filter",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/file-filter/issues",
+ "security": "https://github.com/sebastianbergmann/file-filter/security/policy",
+ "source": "https://github.com/sebastianbergmann/file-filter/tree/1.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/file-filter",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-04-22T07:20:04+00:00"
+ },
+ {
+ "name": "sebastian/git-state",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/git-state.git",
+ "reference": "792a952e0eba55b6960a48aeceb9f371aad1f76b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/git-state/zipball/792a952e0eba55b6960a48aeceb9f371aad1f76b",
+ "reference": "792a952e0eba55b6960a48aeceb9f371aad1f76b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^13.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for describing the state of a Git checkout",
+ "homepage": "https://github.com/sebastianbergmann/git-state",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/git-state/issues",
+ "security": "https://github.com/sebastianbergmann/git-state/security/policy",
+ "source": "https://github.com/sebastianbergmann/git-state/tree/1.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/git-state",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-03-21T12:54:28+00:00"
+ },
+ {
+ "name": "sebastian/global-state",
+ "version": "9.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/global-state.git",
+ "reference": "ba68ba79da690cf7eddefd3ce5b78b20b9ba9945"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/ba68ba79da690cf7eddefd3ce5b78b20b9ba9945",
+ "reference": "ba68ba79da690cf7eddefd3ce5b78b20b9ba9945",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "sebastian/object-reflector": "^6.0",
+ "sebastian/recursion-context": "^8.0"
+ },
+ "require-dev": {
+ "ext-dom": "*",
+ "phpunit/phpunit": "^13.1.13"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "9.0-dev"
}
},
"autoload": {
@@ -11665,7 +11792,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/global-state/issues",
"security": "https://github.com/sebastianbergmann/global-state/security/policy",
- "source": "https://github.com/sebastianbergmann/global-state/tree/8.0.3"
+ "source": "https://github.com/sebastianbergmann/global-state/tree/9.0.1"
},
"funding": [
{
@@ -11685,33 +11812,33 @@
"type": "tidelift"
}
],
- "time": "2026-06-01T15:10:33+00:00"
+ "time": "2026-06-01T15:11:33+00:00"
},
{
"name": "sebastian/lines-of-code",
- "version": "4.0.1",
+ "version": "5.0.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/lines-of-code.git",
- "reference": "d543b8ef219dcd8da262cbb958639a96bedba10e"
+ "reference": "d1b6f8fce682505dbd048977f1abedf1b8ad3ff8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d543b8ef219dcd8da262cbb958639a96bedba10e",
- "reference": "d543b8ef219dcd8da262cbb958639a96bedba10e",
+ "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d1b6f8fce682505dbd048977f1abedf1b8ad3ff8",
+ "reference": "d1b6f8fce682505dbd048977f1abedf1b8ad3ff8",
"shasum": ""
},
"require": {
- "nikic/php-parser": "^5.7.0",
- "php": ">=8.3"
+ "nikic/php-parser": "^5.8.0",
+ "php": ">=8.4"
},
"require-dev": {
- "phpunit/phpunit": "^12.5.25"
+ "phpunit/phpunit": "^13.2.4"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "4.0-dev"
+ "dev-main": "5.0-dev"
}
},
"autoload": {
@@ -11735,7 +11862,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
"security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
- "source": "https://github.com/sebastianbergmann/lines-of-code/tree/4.0.1"
+ "source": "https://github.com/sebastianbergmann/lines-of-code/tree/5.0.2"
},
"funding": [
{
@@ -11755,34 +11882,34 @@
"type": "tidelift"
}
],
- "time": "2026-05-19T16:22:07+00:00"
+ "time": "2026-07-09T08:42:34+00:00"
},
{
"name": "sebastian/object-enumerator",
- "version": "7.0.0",
+ "version": "8.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/object-enumerator.git",
- "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894"
+ "reference": "b39ab125fd9a7434b0ecbc4202eebce11a98cfc5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894",
- "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/b39ab125fd9a7434b0ecbc4202eebce11a98cfc5",
+ "reference": "b39ab125fd9a7434b0ecbc4202eebce11a98cfc5",
"shasum": ""
},
"require": {
- "php": ">=8.3",
- "sebastian/object-reflector": "^5.0",
- "sebastian/recursion-context": "^7.0"
+ "php": ">=8.4",
+ "sebastian/object-reflector": "^6.0",
+ "sebastian/recursion-context": "^8.0"
},
"require-dev": {
- "phpunit/phpunit": "^12.0"
+ "phpunit/phpunit": "^13.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "7.0-dev"
+ "dev-main": "8.0-dev"
}
},
"autoload": {
@@ -11805,40 +11932,52 @@
"support": {
"issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
"security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
- "source": "https://github.com/sebastianbergmann/object-enumerator/tree/7.0.0"
+ "source": "https://github.com/sebastianbergmann/object-enumerator/tree/8.0.0"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/object-enumerator",
+ "type": "tidelift"
}
],
- "time": "2025-02-07T04:57:48+00:00"
+ "time": "2026-02-06T04:46:36+00:00"
},
{
"name": "sebastian/object-reflector",
- "version": "5.0.0",
+ "version": "6.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/object-reflector.git",
- "reference": "4bfa827c969c98be1e527abd576533293c634f6a"
+ "reference": "3ca042c2c60b0eab094f8a1b6a7093f4d4c72200"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a",
- "reference": "4bfa827c969c98be1e527abd576533293c634f6a",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/3ca042c2c60b0eab094f8a1b6a7093f4d4c72200",
+ "reference": "3ca042c2c60b0eab094f8a1b6a7093f4d4c72200",
"shasum": ""
},
"require": {
- "php": ">=8.3"
+ "php": ">=8.4"
},
"require-dev": {
- "phpunit/phpunit": "^12.0"
+ "phpunit/phpunit": "^13.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "5.0-dev"
+ "dev-main": "6.0-dev"
}
},
"autoload": {
@@ -11861,40 +12000,52 @@
"support": {
"issues": "https://github.com/sebastianbergmann/object-reflector/issues",
"security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
- "source": "https://github.com/sebastianbergmann/object-reflector/tree/5.0.0"
+ "source": "https://github.com/sebastianbergmann/object-reflector/tree/6.0.0"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/object-reflector",
+ "type": "tidelift"
}
],
- "time": "2025-02-07T04:58:17+00:00"
+ "time": "2026-02-06T04:47:13+00:00"
},
{
"name": "sebastian/recursion-context",
- "version": "7.0.1",
+ "version": "8.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c"
+ "reference": "74c5af21f6a5833e91767ca068c4d3dfec15317e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/0b01998a7d5b1f122911a66bebcb8d46f0c82d8c",
- "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/74c5af21f6a5833e91767ca068c4d3dfec15317e",
+ "reference": "74c5af21f6a5833e91767ca068c4d3dfec15317e",
"shasum": ""
},
"require": {
- "php": ">=8.3"
+ "php": ">=8.4"
},
"require-dev": {
- "phpunit/phpunit": "^12.0"
+ "phpunit/phpunit": "^13.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "7.0-dev"
+ "dev-main": "8.0-dev"
}
},
"autoload": {
@@ -11925,7 +12076,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/recursion-context/issues",
"security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
- "source": "https://github.com/sebastianbergmann/recursion-context/tree/7.0.1"
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/8.0.0"
},
"funding": [
{
@@ -11945,32 +12096,32 @@
"type": "tidelift"
}
],
- "time": "2025-08-13T04:44:59+00:00"
+ "time": "2026-02-06T04:51:28+00:00"
},
{
"name": "sebastian/type",
- "version": "6.0.4",
+ "version": "7.0.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/type.git",
- "reference": "82ff822c2edc46724be9f7411d3163021f602773"
+ "reference": "fee0309275847fefd7636167085e379c1dbf6990"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/82ff822c2edc46724be9f7411d3163021f602773",
- "reference": "82ff822c2edc46724be9f7411d3163021f602773",
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fee0309275847fefd7636167085e379c1dbf6990",
+ "reference": "fee0309275847fefd7636167085e379c1dbf6990",
"shasum": ""
},
"require": {
- "php": ">=8.3"
+ "php": ">=8.4"
},
"require-dev": {
- "phpunit/phpunit": "^12.5.25"
+ "phpunit/phpunit": "^13.1.10"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "6.0-dev"
+ "dev-main": "7.0-dev"
}
},
"autoload": {
@@ -11994,7 +12145,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/type/issues",
"security": "https://github.com/sebastianbergmann/type/security/policy",
- "source": "https://github.com/sebastianbergmann/type/tree/6.0.4"
+ "source": "https://github.com/sebastianbergmann/type/tree/7.0.1"
},
"funding": [
{
@@ -12014,29 +12165,29 @@
"type": "tidelift"
}
],
- "time": "2026-05-20T06:45:45+00:00"
+ "time": "2026-05-20T06:49:11+00:00"
},
{
"name": "sebastian/version",
- "version": "6.0.0",
+ "version": "7.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/version.git",
- "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c"
+ "reference": "ad37a5552c8e2b88572249fdc19b6da7792e021b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c",
- "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c",
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/ad37a5552c8e2b88572249fdc19b6da7792e021b",
+ "reference": "ad37a5552c8e2b88572249fdc19b6da7792e021b",
"shasum": ""
},
"require": {
- "php": ">=8.3"
+ "php": ">=8.4"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "6.0-dev"
+ "dev-main": "7.0-dev"
}
},
"autoload": {
@@ -12060,15 +12211,27 @@
"support": {
"issues": "https://github.com/sebastianbergmann/version/issues",
"security": "https://github.com/sebastianbergmann/version/security/policy",
- "source": "https://github.com/sebastianbergmann/version/tree/6.0.0"
+ "source": "https://github.com/sebastianbergmann/version/tree/7.0.0"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/version",
+ "type": "tidelift"
}
],
- "time": "2025-02-07T05:00:38+00:00"
+ "time": "2026-02-06T04:52:52+00:00"
},
{
"name": "spatie/laravel-ray",
diff --git a/config/flare.php b/config/flare.php
index 9edd19f5..0b8c6187 100644
--- a/config/flare.php
+++ b/config/flare.php
@@ -1,8 +1,6 @@
env('FLARE_KEY'),
- /*
- |
- |--------------------------------------------------------------------------
- | Flare Base URL
- |--------------------------------------------------------------------------
- |
- | Which server should be used to send the reports/traces to.
- |
- */
- 'base_url' => env('FLARE_BASE_URL', Api::BASE_URL),
-
/*
|--------------------------------------------------------------------------
| Collects
@@ -47,22 +34,6 @@ return [
extra: []
),
- /*
- |--------------------------------------------------------------------------
- | Attribute providers
- |--------------------------------------------------------------------------
- |
- | When sending an error report or trace to Flare attributes can be added to
- | the report or trace for common entries. An example of such an entry is
- | the currently authenticated user. In an attribute provider you can
- | specify which attributes should be sent.
- |
- */
-
- 'attribute_providers' => [
- 'user' => LaravelUserAttributesProvider::class,
- ],
-
/*
|--------------------------------------------------------------------------
| Censor data
@@ -88,19 +59,49 @@ return [
'X-XSRF-TOKEN',
],
'client_ips' => false,
+ 'cookies' => false,
+ 'session' => false,
],
/*
|--------------------------------------------------------------------------
- | Reporting log statements
+ | Sender
|--------------------------------------------------------------------------
|
- | If this setting is `false` log statements won't be sent as events to Flare,
- | no matter which error level you specified in the Flare log channel.
+ | The sender is responsible for sending the error reports and traces to
+ | Flare. By default, Laravel Flare sends them over HTTP. To use the local
+ | Flare daemon, switch the sender class to
+ | `Spatie\FlareClient\Senders\DaemonSender::class` and set `daemon_url`.
+ | The daemon sender defaults to localhost on port 8787 and uses its own
+ | default timeouts and fallback sender config unless you override them.
|
*/
- 'send_logs_as_events' => true,
+ 'sender' => [
+ 'class' => LaravelHttpSender::class,
+ 'config' => [
+ 'timeout' => 10,
+ ],
+ ],
+
+ // Daemon sender example
+ // 'sender' => [
+ // 'class' => \Spatie\FlareClient\Senders\DaemonSender::class,
+ // 'config' => [
+ // 'daemon_url' => env('FLARE_DAEMON_URL', 'http://127.0.0.1:8787'),
+ // ],
+ // ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Report
+ |--------------------------------------------------------------------------
+ |
+ | Flare reports errors and exceptions happening within your application.
+ |
+ */
+
+ 'report' => env('FLARE_REPORT', true),
/*
|--------------------------------------------------------------------------
@@ -109,10 +110,27 @@ return [
| When reporting errors, you can specify which error levels should be
| reported. By default, all error levels are reported by setting
| this value to `null`.
- */
+ */
'report_error_levels' => null,
+ /*
+ |--------------------------------------------------------------------------
+ | Override grouping
+ |--------------------------------------------------------------------------
+ |
+ | Flare will try to group errors and exceptions as best as possible, that
+ | being said, sometimes you might want to override the grouping. You can
+ | do this by adding exception classes to this array which should always
+ | be grouped by exception class, exception message or exception class
+ | and message.
+ |
+ */
+
+ 'overridden_groupings' => [
+ // Illuminate\Http\Client\ConnectionException::class => Spatie\FlareClient\Enums\OverriddenGrouping::ExceptionMessageAndClass,
+ ],
+
/*
|--------------------------------------------------------------------------
| Share button
@@ -126,40 +144,6 @@ return [
'enable_share_button' => true,
- /*
- |--------------------------------------------------------------------------
- | Override grouping
- |--------------------------------------------------------------------------
- |
- | Flare will try to group errors and exceptions as best as possible, that
- | being said, sometimes you might want to override the grouping. You can
- | do this by adding exception classes to this array which should always
- | be grouped by exception class, exception message or exception class
- | and message.
- |
- */
-
- 'overridden_groupings' => [
- // Illuminate\Http\Client\ConnectionException::class => Spatie\FlareClient\Enums\OverriddenGrouping::ExceptionMessageAndClass,
- ],
-
- /*
- |--------------------------------------------------------------------------
- | Sender
- |--------------------------------------------------------------------------
- |
- | The sender is responsible for sending the error reports and traces to
- | Flare it can be configured if needed.
- |
- */
-
- 'sender' => [
- 'class' => LaravelHttpSender::class,
- 'config' => [
- 'timeout' => 10,
- ],
- ],
-
/*
|--------------------------------------------------------------------------
| Trace
@@ -170,7 +154,7 @@ return [
|
*/
- 'trace' => env('FLARE_TRACE', false),
+ 'trace' => env('FLARE_TRACE', true),
/*
|--------------------------------------------------------------------------
@@ -183,26 +167,35 @@ return [
| which means that 10% of the traces will be recorded.
|
*/
+
'sampler' => [
'class' => RateSampler::class,
'config' => [
- 'rate' => 0.1,
+ 'rate' => env('FLARE_SAMPLER_RATE', 0.1),
],
],
/*
|--------------------------------------------------------------------------
- | Trace limits
+ | Log
|--------------------------------------------------------------------------
|
- | Limits for the tracing data. These limits are used to prevent
- | the tracing data from growing too large.
+ | Logging show you an overview of log entries within your application.
|
*/
- 'trace_limits' => [
- 'max_spans' => 512,
- 'max_attributes_per_span' => 128,
- 'max_span_events_per_span' => 128,
- 'max_attributes_per_span_event' => 128,
- ],
+
+ 'log' => env('FLARE_LOG', false),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Minimal log level
+ |--------------------------------------------------------------------------
+ |
+ | You can specify the minimal (Monolog) log level that should be sent to Flare.
+ | Log levels lower than the specified level will be ignored.
+ | If null all log levels will be sent to Flare.
+ |
+ */
+
+ 'minimal_log_level' => null,
];
diff --git a/config/image.php b/config/image.php
deleted file mode 100644
index b984a0f0..00000000
--- a/config/image.php
+++ /dev/null
@@ -1,22 +0,0 @@
- Driver::class,
-
-];
diff --git a/config/services.php b/config/services.php
index b784e544..7a5cdfa5 100644
--- a/config/services.php
+++ b/config/services.php
@@ -39,4 +39,8 @@ return [
'token' => env('CLOUDCONVERT_API_TOKEN'),
],
+ 'brrr' => [
+ 'webhook_url' => env('BRRR_WEBHOOK_URL'),
+ ],
+
];
diff --git a/database/factories/AboutFactory.php b/database/factories/AboutFactory.php
new file mode 100644
index 00000000..5af2532e
--- /dev/null
+++ b/database/factories/AboutFactory.php
@@ -0,0 +1,24 @@
+
+ */
+class AboutFactory extends Factory
+{
+ /**
+ * Define the model's default state.
+ *
+ * @return array Use this for clients that can't complete the IndieAuth authorization flow (e.g. they don't support PKCE) and instead let you paste in a token directly. Here's your new token. Copy it now — it won't be shown again. No tokens have been issued.About
+ Edit About
+
+@stop
diff --git a/resources/views/admin/settings/show.blade.php b/resources/views/admin/settings/show.blade.php
new file mode 100644
index 00000000..801171e1
--- /dev/null
+++ b/resources/views/admin/settings/show.blade.php
@@ -0,0 +1,26 @@
+@extends('master')
+
+@section('title')Site Settings « Admin CP « @stop
+
+@section('content')
+ Site settings
+
+@stop
diff --git a/resources/views/admin/tokens/create.blade.php b/resources/views/admin/tokens/create.blade.php
new file mode 100644
index 00000000..d4847d1e
--- /dev/null
+++ b/resources/views/admin/tokens/create.blade.php
@@ -0,0 +1,52 @@
+@extends('master')
+
+@section('title')New Token « Admin CP « @stop
+
+@section('content')
+ Generate a new token
+ Micropub Tokens
+
+
+ @if(session('new_token'))
+
+
+
+
+
+
+
+ @foreach($tokens as $token)
+ Client
+ Scope
+ Issued
+ Status
+ Action
+
+
+ @endforeach
+
+ {{ $token->client_id }}
+
+
+ @foreach(explode(' ', $token->scope) as $scope)
+ {{ $scope }}
+ @endforeach
+
+
+
+
+ @if($token->isRevoked)
+ Revoked {{ $token->revoked_at->diffForHumans() }}
+ @else
+ Active
+ @endif
+
+
+ @unless($token->isRevoked)
+
+ @endunless
+
+
+ View and revoke issued Micropub tokens. +
+Edit your bio.
++ Edit your about page. +
+Manager your passkeys.
+ ++ Edit site settings. +
@stop diff --git a/resources/views/articles/atom.blade.php b/resources/views/articles/atom.blade.php deleted file mode 100644 index 9892bcfb..00000000 --- a/resources/views/articles/atom.blade.php +++ /dev/null @@ -1,20 +0,0 @@ - -