Skip to content

Commit

Permalink
Merge pull request #21 from dotkernel/issue-20
Browse files Browse the repository at this point in the history
issue-20
  • Loading branch information
arhimede authored Nov 30, 2023
2 parents 0e3cb5c + ef832d8 commit 443f06b
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
php:
- "8.1"
- "8.2"
- "8.3"

steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cs-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
php:
- "8.1"
- "8.2"
- "8.3"

steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
php:
- "8.1"
- "8.2"
- "8.3"

steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
php:
- "8.1"
- "8.2"
- "8.3"

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# dot-navigation

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

[![GitHub issues](https://img.shields.io/github/issues/dotkernel/dot-navigation)](https://github.com/dotkernel/dot-navigation/issues)
[![GitHub forks](https://img.shields.io/github/forks/dotkernel/dot-navigation)](https://github.com/dotkernel/dot-navigation/network)
Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@
}
},
"require": {
"php": "~8.1.0 || ~8.2.0",
"dotkernel/dot-authorization": "^3.1.0",
"dotkernel/dot-helpers": "^3.2.0",
"laminas/laminas-escaper": "^2.10.0",
"laminas/laminas-servicemanager": "^3.11.2",
"mezzio/mezzio-template": "^2.4.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"dotkernel/dot-authorization": "^3.4.1",
"dotkernel/dot-helpers": "^3.4.2",
"laminas/laminas-escaper": "^2.13.0",
"laminas/laminas-servicemanager": "^3.22.1",
"mezzio/mezzio-template": "^2.9.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-server-middleware": "^1.0.1"
"psr/http-server-middleware": "^1.0.2"
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.5",
"phpunit/phpunit": "^10.2",
"vimeo/psalm": "^5.13"
"laminas/laminas-coding-standard": "^2.5.0",
"phpunit/phpunit": "^10.4.2",
"vimeo/psalm": "^5.16.0"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 4 additions & 0 deletions src/Options/NavigationOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

use Laminas\Stdlib\AbstractOptions;

/**
* @template TValue
* @template-extends AbstractOptions<TValue>
*/
class NavigationOptions extends AbstractOptions
{
protected array $containers = [];
Expand Down

0 comments on commit 443f06b

Please sign in to comment.