Skip to content

Commit

Permalink
v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Jan 27, 2018
1 parent 672f4a6 commit f3f95a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [UNRELEASED]
## [1.0.0] - 2018-01-27

### Added

Expand Down Expand Up @@ -63,7 +63,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

First version

[UNRELEASED]: https://github.com/middlewares/php-session/compare/v0.6.0...HEAD
[1.0.0]: https://github.com/middlewares/php-session/compare/v0.6.0...v1.0.0
[0.6.0]: https://github.com/middlewares/php-session/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/middlewares/php-session/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/middlewares/php-session/compare/v0.3.0...v0.4.0
Expand Down
7 changes: 6 additions & 1 deletion tests/PhpSessionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ public function testPhpSession(string $sessionName, string $value)
{
$response = Dispatcher::run(
[
(new PhpSession())->name($sessionName),
(new PhpSession())
->name($sessionName)
->options([
'use_cookies' => false,
'use_only_cookies' => true,
]),

function ($request) use ($value) {
echo session_name();
Expand Down

0 comments on commit f3f95a5

Please sign in to comment.