Skip to content
Open
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
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ BUILD_ROOT_PATH=/app/
PROJECT_NAME=dhii_containers

PHP_BUILD_VERSION=7.4
PHP_TEST_VERSION=8.2
PHP_TEST_VERSION=8.1
XDEBUG_VERSION=3.2.2

HOST_IP_ADDRESS=127.0.0.1
HOST_IP_ADDRESS=host-gateway
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ jobs:
strategy:
matrix:
php-versions:
- '7.4'
- '8.0'
- '8.1'
- '8.2'
- '8.3'
- '8.4'
name: PHP ${{ matrix.php-versions }}
steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
/.idea/misc.xml
.phpunit.result.cache
/.env
/.phpunit.cache
12 changes: 0 additions & 12 deletions .idea/codeception.xml

This file was deleted.

30 changes: 24 additions & 6 deletions .idea/containers.iml

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

49 changes: 35 additions & 14 deletions .idea/php.xml

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

3 changes: 0 additions & 3 deletions .idea/phpspec.xml

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

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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** (#32).
- Added type declarations throughout the codebase (#32).
- `TaggingServiceProvider` now silently skips non-documentable values (#32).

### Fixed
- Type inconsistencies reported by Psalm (#32),

## [0.2.0-alpha1] - 2024-09-22
### Added
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
"minimum-stability": "dev",
"prefer-stable": false,
"require": {
"php": "^7.4 | ^8.0",
"php": "^8.1",
"dhii/collections-interface": "^0.4.0-alpha2",
"container-interop/service-provider": "^0.4"
},
"require-dev": {
"slevomat/coding-standard": "^6.0",
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^5.0",
"slevomat/coding-standard": "^8.0",
"phpunit/phpunit": "^10.0",
"vimeo/psalm": "^6.0",
"gmazzap/andrew": "^1.1",
"psr/container": "^2.0",
"psr/simple-cache": "^1.0",
Expand Down
Loading
Loading