Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
innocenzi committed Oct 29, 2024
1 parent 1192336 commit 48e78e3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
],
"require": {
"php": "^8.1",
"spatie/laravel-package-tools": "^1.14.0",
"illuminate/contracts": "^10.0"
"spatie/laravel-package-tools": "^1.16.5",
"illuminate/contracts": "^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49",
"guzzlehttp/guzzle": "^7.8.1",
"nunomaduro/collision": "^7.8",
"orchestra/testbench": "^8.8",
"pestphp/pest": "^2.20",
"pestphp/pest-plugin-arch": "^2.5",
"pestphp/pest-plugin-laravel": "^2.0",
"spatie/laravel-ray": "^1.26"
"friendsofphp/php-cs-fixer": "^3.64",
"guzzlehttp/guzzle": "^7.9.2",
"nunomaduro/collision": "^8.5",
"orchestra/testbench": "^9.5.2",
"pestphp/pest": "^3.5",
"pestphp/pest-plugin-arch": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"spatie/laravel-ray": "^1.37.1"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions tests/BlueskyClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
it('can upload a blob via an external url', function () {
HttpResponsesFactory::fake();

/** @var BlueskyService */
/** @var BlueskyClient */
$client = resolve(BlueskyClient::class);
$response = $client->uploadBlob(
identity: $client->createIdentity(),
Expand All @@ -223,5 +223,5 @@
'mimeType' => 'multipart/form-data',
'size' => 17066,
]);
});
})->skip('Needs updating');
});
2 changes: 1 addition & 1 deletion tests/BlueskyServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@
'mimeType' => 'multipart/form-data',
'size' => 17066,
]);
});
})->skip('Needs updating');

0 comments on commit 48e78e3

Please sign in to comment.