Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/1.0' into feature/v1.1.0
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/ci.yml
#	README.md
#	composer.json
  • Loading branch information
tamastoth-byborg committed Oct 17, 2023
2 parents 57949f6 + 44012f3 commit e118932
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG-1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.1.0] - 2023-10-17
### Added
- Added PHP 8 support.

## [1.0.1] - 2021-05-07
### Changed
- Changed RequestBody to Stream in convertRequest to avoid unnecessary input stream copy.
Expand Down
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,15 @@ static-cs-fix:

static-cs-check:
$(MAKE) static-cs-fix CS_PARAMS="--dry-run"

DOCKER_RUN=docker run --rm -u $(shell id -u):$(shell id -g) -v $(shell pwd):/app -w /app

local-ci:
$(DOCKER_RUN) -v ~/.composer:/tmp -v ~/.ssh:/root/.ssh composer:2 install
$(DOCKER_RUN) php:7.2-cli vendor/bin/codecept build
$(DOCKER_RUN) php:7.2-cli vendor/bin/codecept run
$(DOCKER_RUN) php:7.3-cli vendor/bin/codecept run
$(DOCKER_RUN) php:7.4-cli vendor/bin/codecept run
$(DOCKER_RUN) php:8.0-cli vendor/bin/codecept run
$(DOCKER_RUN) php:8.1-cli vendor/bin/codecept run
$(DOCKER_RUN) php:8.2-cli vendor/bin/codecept run

0 comments on commit e118932

Please sign in to comment.