Skip to content
This repository has been archived by the owner on Apr 28, 2024. It is now read-only.

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweissman committed Jun 18, 2017
1 parent a3ccf97 commit c73f50c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sessions module for UserFrosting
# Sessions module for UserFrosting 4.1

## Example usage:

Expand Down
13 changes: 8 additions & 5 deletions Session/Session.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<?php

/**
* A wrapper for $_SESSION that can be used with a variety of different session handlers, based on illuminate/session
* UserFrosting (http://www.userfrosting.com)
*
* @package userfrosting/session
* @author Alexander Weissman
* @license MIT
* @link https://github.com/userfrosting/session
* @license https://github.com/userfrosting/UserFrosting/blob/master/LICENSE.md (MIT License)
*/
namespace UserFrosting\Session;

Expand All @@ -14,6 +12,11 @@
use Illuminate\Support\Arr;
use SessionHandlerInterface;

/**
* A wrapper for $_SESSION that can be used with a variety of different session handlers, based on illuminate/session
*
* @author Alexander Weissman (https://alexanderweissman.com)
*/
class Session implements ArrayAccess
{
/**
Expand Down
12 changes: 3 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,14 @@
"homepage": "https://alexanderweissman.com"
}
],
"version": "4.0.1",
"version": "4.1.0",
"require": {
"illuminate/session": "^5.4",
"php": ">=5.5.9"
"php": ">=5.6"
},
"autoload": {
"psr-4": {
"UserFrosting\\Session\\": "Session"
}
},
"extra": {
"branch-alias": {
"dev-dev": "1.0.x-dev"
}
},
"minimum-stability" : "dev"
}
}

0 comments on commit c73f50c

Please sign in to comment.