Skip to content

Commit

Permalink
Merge pull request #33 from dotkernel/issue-32
Browse files Browse the repository at this point in the history
issue-32
  • Loading branch information
arhimede authored Nov 30, 2023
2 parents 7c9266f + f316e28 commit 5458884
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 9 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-session

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

[![GitHub issues](https://img.shields.io/github/issues/dotkernel/dot-session)](https://github.com/dotkernel/dot-session/issues)
[![GitHub forks](https://img.shields.io/github/forks/dotkernel/dot-session)](https://github.com/dotkernel/dot-session/network)
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"laminas/laminas-servicemanager": "^3.11.1",
"laminas/laminas-session": "^2.12.1",
"laminas/laminas-stdlib": "^3.7.1",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-servicemanager": "^3.22.1",
"laminas/laminas-session": "^2.17.0",
"laminas/laminas-stdlib": "^3.18.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/SessionOptions.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 SessionOptions extends AbstractOptions
{
protected int $rememberMeInactive = 1800;
Expand Down

0 comments on commit 5458884

Please sign in to comment.