Skip to content

Commit 3c809aa

Browse files
authored
Merge pull request #27 from DoclerLabs/feature/v1.1.0
Feature/v1.1.0
2 parents 57949f6 + e118932 commit 3c809aa

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

CHANGELOG-1.0.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and 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.

Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,15 @@ static-cs-fix:
3535

3636
static-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

0 commit comments

Comments
 (0)