File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed 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.1.0] - 2023-10-17
8+ ### Added
9+ - Added PHP 8 support.
10+
711## [ 1.0.1] - 2021-05-07
812### Changed
913- Changed RequestBody to Stream in convertRequest to avoid unnecessary input stream copy.
Original file line number Diff line number Diff line change @@ -35,3 +35,15 @@ static-cs-fix:
3535
3636static-cs-check :
3737 $(MAKE ) static-cs-fix CS_PARAMS=" --dry-run"
38+
39+ DOCKER_RUN =docker run --rm -u $(shell id -u) :$(shell id -g) -v $(shell pwd) :/app -w /app
40+
41+ local-ci :
42+ $(DOCKER_RUN ) -v ~ /.composer:/tmp -v ~ /.ssh:/root/.ssh composer:2 install
43+ $(DOCKER_RUN ) php:7.2-cli vendor/bin/codecept build
44+ $(DOCKER_RUN ) php:7.2-cli vendor/bin/codecept run
45+ $(DOCKER_RUN ) php:7.3-cli vendor/bin/codecept run
46+ $(DOCKER_RUN ) php:7.4-cli vendor/bin/codecept run
47+ $(DOCKER_RUN ) php:8.0-cli vendor/bin/codecept run
48+ $(DOCKER_RUN ) php:8.1-cli vendor/bin/codecept run
49+ $(DOCKER_RUN ) php:8.2-cli vendor/bin/codecept run
You can’t perform that action at this time.
0 commit comments