Skip to content

Commit

Permalink
Merge pull request #87 from auraphp/php8.2_support
Browse files Browse the repository at this point in the history
Enable PHP 8.2 compat
  • Loading branch information
koriym authored Dec 12, 2022
2 parents a0de5d8 + 661af28 commit 64f07d7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- '7.4'
- '8.0'
- '8.1'
- '8.2'
steps:
- name: Checkout
uses: actions/checkout@v1
Expand All @@ -34,7 +35,7 @@ jobs:

- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache dependencies
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ session segments, next-request-only ("flash") values, and CSRF tools.

### Installation

This library requires PHP 7.2 or later. It has been tested on PHP 7.2-8.1. we recommend using the latest available version of PHP as a matter of principle. It has no userland dependencies.
This library requires PHP 7.2 or later. It has been tested on PHP 7.2-8.2. we recommend using the latest available version of PHP as a matter of principle. It has no userland dependencies.

It is installable and autoloadable via Composer as [aura/session](https://packagist.org/packages/aura/session).

Expand Down
3 changes: 3 additions & 0 deletions tests/SessionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
*/
class SessionTest extends TestCase
{
/** @var FakePhpfunc */
private $phpfunc;

// the session object
protected $session;

Expand Down

0 comments on commit 64f07d7

Please sign in to comment.