Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ BASE_PATH=./
BUILD_ROOT_PATH=/app/
PROJECT_NAME=dhii_collections-interface

PHP_BUILD_VERSION=7.4
PHP_TEST_VERSION=7.4
PHP_BUILD_VERSION=8.1
PHP_TEST_VERSION=8.1
XDEBUG_VERSION=3.4.7

HOST_IP_ADDRESS=127.0.0.1
HOST_IP_ADDRESS=host-gateway
3 changes: 1 addition & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@ jobs:
strategy:
matrix:
php-versions:
- '7.4'
- '8.0'
- '8.1'
- '8.2'
- '8.3'
- '8.4'

steps:
- uses: actions/checkout@v2
Expand Down
24 changes: 19 additions & 5 deletions .idea/collections-interface.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 0 additions & 14 deletions .idea/php-test-framework.xml

This file was deleted.

142 changes: 90 additions & 52 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [[*next-version*]] - YYYY-MM-DD
### Changed
- Dropped support for PHP < 8.1 (#35).
- Many interfaces now have generics (#35).

## [0.4.0-alpha2] - 2024-09-21
### Fixed
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 | ^8.0",
"php": "^8.1",
"psr/container": "^1.0 | ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"slevomat/coding-standard": "^6.0",
"vimeo/psalm": "^4.6.2 | ^5.0"
"phpunit/phpunit": "^10.0",
"slevomat/coding-standard": "^8.0",
"vimeo/psalm": "^6.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading
Loading