File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1212 uses : actions/checkout@v2
1313
1414 - name : PHPStan
15- uses : docker://oskarstark/phpstan-ga:0.12.41
15+ uses : docker://oskarstark/phpstan-ga:0.12.85
1616 env :
1717 REQUIRE_DEV : true
1818 with :
2727 uses : actions/checkout@v2
2828
2929 - name : PHP-CS-Fixer
30- uses : docker://oskarstark/php-cs-fixer-ga:2.16.4
30+ uses : docker://oskarstark/php-cs-fixer-ga:2.19.0
3131 with :
3232 args : --dry-run --diff-format udiff
Original file line number Diff line number Diff line change @@ -62,5 +62,6 @@ return PhpCsFixer\Config::create()
6262 PhpCsFixer \Finder::create ()
6363 ->in (__DIR__ .'/src ' )
6464 ->in (__DIR__ .'/test ' )
65+ ->exclude ('support/_generated ' )
6566 ->name ('*.php ' )
6667 );
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 1.0.1] - 2021-05-07
8+ ### Changed
9+ - Changed RequestBody to Stream in convertRequest to avoid unnecessary input stream copy.
10+
711## [ 1.0.0] - 2020-10-13
812### Added
913- Added Slim v3 support.
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ coverage:
2121static : static-phpstan static-cs-check
2222
2323static-phpstan :
24- docker run --rm -it -e REQUIRE_DEV=true -v ${PWD} :/app -w /app oskarstark/phpstan-ga:0.12.41 analyze $(PHPSTAN_PARAMS )
24+ docker run --rm -it -e REQUIRE_DEV=true -v ${PWD} :/app -w /app oskarstark/phpstan-ga:0.12.85 analyze $(PHPSTAN_PARAMS )
2525
2626static-cs-fix :
27- docker run --rm -it -v ${PWD} :/app -w /app oskarstark/php-cs-fixer-ga:2.16.4 --diff-format udiff $(CS_PARAMS )
27+ docker run --rm -it -v ${PWD} :/app -w /app oskarstark/php-cs-fixer-ga:2.19.0 --diff-format udiff $(CS_PARAMS )
2828
2929static-cs-check :
3030 $(MAKE ) static-cs-fix CS_PARAMS=" --dry-run"
You can’t perform that action at this time.
0 commit comments