Skip to content

Commit

Permalink
bump azjezz/psl to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored and jrmajor committed Oct 6, 2024
1 parent 18753bb commit a73d1b5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
4 changes: 2 additions & 2 deletions app/Services/Wikipedia.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function url(string $title): string

public function extract(string $title): ?string
{
$titleHash = Hash\hash($title, Hash\Algorithm::MD5);
$titleHash = Hash\hash($title, Hash\Algorithm::Md5);

return Cache::remember(
"wikipedia-{$titleHash}-extract",
Expand Down Expand Up @@ -79,7 +79,7 @@ public function refreshCache(string $title): void

public function forget(string $title): bool
{
$titleHash = Hash\hash($title, Hash\Algorithm::MD5);
$titleHash = Hash\hash($title, Hash\Algorithm::Md5);

return Cache::forget("wikipedia-{$titleHash}-extract");
}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"require": {
"php": "~8.3.0",
"azjezz/psl": "^2.9",
"azjezz/psl": "^3.0",
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/psr7": "^2.6",
"inertiajs/inertia-laravel": "^1.3",
Expand Down
35 changes: 18 additions & 17 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a73d1b5

Please sign in to comment.