Skip to content

Commit

Permalink
Version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
erikaheidi committed Sep 28, 2024
1 parent 7d42bd2 commit 2946851
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
],
"license": "MIT",
"require": {
"php": "^8.1",
"pestphp/pest": "^2.0.0",
"pestphp/pest-plugin": "^2.0.0",
"php": "^8.2",
"pestphp/pest": "^3.2.0",
"pestphp/pest-plugin": "^3.0.0",
"minicli/curly": "^0.2.2"
},
"autoload": {
Expand Down
1 change: 0 additions & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ parameters:
- src

checkMissingIterableValueType: true
checkGenericClassInNonGenericObjectType: false
reportUnmatchedIgnoredErrors: true
2 changes: 1 addition & 1 deletion src/Autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

function curly(): Client
{
return new Client();
return new Client;
}
2 changes: 1 addition & 1 deletion src/Curly.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ public function responseContains(string $endpoint, string $needle): TestCase

protected function getCurly(): Client
{
return new Client();
return new Client;
}
}

0 comments on commit 2946851

Please sign in to comment.