Skip to content

Commit

Permalink
Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sirn-se committed Feb 2, 2024
1 parent 486d14d commit 8ed4380
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
test:
strategy:
matrix:
php-versions: ["8.1", "8.2", "8.3", "8.4"]
php-versions: ["8.0", "8.1", "8.2", "8.3", "8.4"]
runs-on: ubuntu-latest
name: Unit test
steps:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.0",
"phpunit/phpunit": "^9.0 | ^10.0",
"phpunit/phpunit": "^9.0 | ^10.0| ^11.0",
"phrity/net-mock": "1.3",
"squizlabs/php_codesniffer": "^3.5"
}
Expand Down
11 changes: 9 additions & 2 deletions docs/Contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,21 @@
Everyone is welcome to help out!
But to keep this project sustainable, please ensure your contribution respects the requirements below.

## PR Requirements
## Pull Request requirements

Requirements on pull requests;
* All tests **MUST** pass.
* Code coverage **MUST** remain at 100%.
* Code **MUST** adhere to PSR-1 and PSR-12 code standards.

## SemVer, versions, and target branches

This repo uses strict [Semantic Versioning](https://semver.org).

* MAJOR version when introducing breaking changes
* MINOR version when adding features
* PATCH version when fixing bugs and equivalent changes

Base your patch on corresponding version branch, and target that version branch in your pull request.

| Version | Branch | PHP | Status |
Expand All @@ -28,7 +36,6 @@ Base your patch on corresponding version branch, and target that version branch
| [`1.1`](https://github.com/sirn-se/websocket-php/tree/1.1.0) | - | - | Not supported |
| [`1.0`](https://github.com/sirn-se/websocket-php/tree/1.0.0) | - | - | Not supported |


## Dependency management

Install or update dependencies using [Composer](https://getcomposer.org/).
Expand Down

0 comments on commit 8ed4380

Please sign in to comment.