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
1 change: 1 addition & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- "8.1"
- "8.2"
- "8.3"
- "8.4"

steps:
- name: Checkout
Expand Down
9 changes: 3 additions & 6 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"ignore_php_platform_requirements": {
"8.4": true
},
"backwardCompatibilityCheck": true
}
{
"backwardCompatibilityCheck": true
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## dot-helpers badges

![OSS Lifecycle](https://img.shields.io/osslifecycle/dotkernel/dot-helpers)
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-helpers/3.7.0)
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-helpers/3.7.1)

[![GitHub issues](https://img.shields.io/github/issues/dotkernel/dot-helpers)](https://github.com/dotkernel/dot-helpers/issues)
[![GitHub forks](https://img.shields.io/github/forks/dotkernel/dot-helpers)](https://github.com/dotkernel/dot-helpers/network)
Expand All @@ -17,7 +17,7 @@

## Requirements

- PHP >= 8.1
- **PHP**: 8.1, 8.2, 8.3, or 8.4

## Install

Expand All @@ -29,4 +29,4 @@ composer require dotkernel/dot-helpers

Next, register the package's `ConfigProvider` to your application config.

Note : Make sure to register the package under the `// DK packages` section.
> Make sure to register the package under the `// DK packages` section.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
"laminas/laminas-diactoros": "^3.3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5.9",
"laminas/laminas-coding-standard": "^3.0",
"vimeo/psalm": "^5.26.1"
"phpunit/phpunit": "^10.5.9",
"vimeo/psalm": "^6.0"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions docs/book/v3/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Requirements

- PHP >= 8.1
- **PHP**: 8.1, 8.2, 8.3, or 8.4

## Register ConfigProvider

Expand All @@ -12,4 +12,4 @@ Next, register the package's `ConfigProvider` to your application config.
Dot\Helpers\ConfigProvider::class,
```

Note : Make sure to register the package under the `// DK packages` section.
> Make sure to register the package under the `// DK packages` section.
4 changes: 3 additions & 1 deletion docs/book/v3/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

Install dotkernel/dot-helpers by executing the following Composer command in your project directory:

composer require dotkernel/dot-helpers
```shell
composer require dotkernel/dot-helpers
```
Loading