gitextract_njjloc6y/ ├── .github/ │ └── workflows/ │ └── continuous-integration.yml ├── .gitignore ├── .scrutinizer.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── codecov.yml ├── composer.json ├── docs/ │ ├── _bookdown.json │ └── getting-started.md ├── phpunit.php ├── phpunit.xml.dist ├── src/ │ ├── CsrfToken.php │ ├── CsrfTokenFactory.php │ ├── Exception/ │ │ └── SessionAlreadyStarted.php │ ├── Exception.php │ ├── Phpfunc.php │ ├── Randval.php │ ├── RandvalInterface.php │ ├── Segment.php │ ├── SegmentFactory.php │ ├── SegmentInterface.php │ ├── Session.php │ └── SessionFactory.php └── tests/ ├── CsrfTokenTest.php ├── FakeSessionHandler.php ├── Issue23Test.php ├── SegmentTest.php ├── SessionFactoryTest.php └── SessionTest.php