Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
23acf21
Upgrade docker container to php 8.0 and update composer to work with …
luispabon Aug 26, 2021
b972fdd
Run phpstan at level 8
luispabon Aug 26, 2021
75b0926
Update infection to 0.24
luispabon Aug 26, 2021
59eae51
Update version to 3.3.0
luispabon Aug 26, 2021
c13fed8
Require guzzle 7
luispabon Aug 26, 2021
500c914
Change test expectation - httpClient can only return ResponseInterface
luispabon Aug 26, 2021
ca6bbfe
Guzzle\BadResponseException can no longer return a null response
luispabon Aug 26, 2021
e98b5b1
Change test expectation - httpClient can only return ResponseInterface
luispabon Aug 26, 2021
5904068
Since BadRequestException can no longer return an empty response, sta…
luispabon Aug 26, 2021
530f22b
Inspections: import global functions
luispabon Aug 26, 2021
984c2be
More strict json_encode on error reporter
luispabon Aug 26, 2021
8074788
Update concourse build to use php 8
luispabon Aug 26, 2021
294a895
Cleanup code: constructor property promotions, redundant phpdoc type …
luispabon Aug 26, 2021
49bb0d3
Run phpstan at level 8 (again)
luispabon Aug 26, 2021
5336262
Tests: import global functions
luispabon Aug 26, 2021
d9dfe3a
expects(self::any()) is now redundant on phpunit
luispabon Aug 26, 2021
b4fb921
Tests: cleanup property declarations with types and cleanup redundant…
luispabon Aug 26, 2021
41d8284
Tests: formatting
luispabon Aug 26, 2021
5b26840
Code: formatting
luispabon Aug 26, 2021
259acdf
More test property type simplifications
luispabon Aug 26, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM phpdockerio/php74-cli
FROM phpdockerio/php80-cli
MAINTAINER https://phpdocker.io

WORKDIR /workdir
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
},
"license": "MIT",
"require": {
"ext-json": "*",
"php": "^7.4",
"ext-curl": "*",
"guzzlehttp/guzzle": "^6.3",
"php": "^8.0",
"ext-json": "*",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.3",
"symfony/console": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"infection/infection": "^0.21.0",
"infection/infection": "^0.24.0",
"symfony/var-dumper": "^5.0",
"phpstan/phpstan": "^0.12.0"
}
Expand Down
Loading