gitextract_z0pcsndb/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── php.yml ├── .gitignore ├── .scrutinizer.yml ├── LICENSE ├── README.md ├── codeception.yml ├── composer.json ├── demo/ │ ├── ajax-broker/ │ │ ├── api.php │ │ ├── app.js │ │ ├── attach.php │ │ ├── index.html │ │ └── verify.php │ ├── broker/ │ │ ├── error.php │ │ ├── include/ │ │ │ ├── attach.php │ │ │ └── functions.php │ │ ├── index.php │ │ ├── login.php │ │ └── logout.php │ └── server/ │ ├── api/ │ │ ├── info.php │ │ ├── login.php │ │ └── logout.php │ ├── attach.php │ └── include/ │ ├── config.php │ └── start_broker_session.php ├── phpcs.xml ├── phpstan.neon ├── src/ │ ├── Broker/ │ │ ├── Broker.php │ │ ├── Cookies.php │ │ ├── Curl.php │ │ ├── NotAttachedException.php │ │ ├── RequestException.php │ │ └── Session.php │ └── Server/ │ ├── BrokerException.php │ ├── ExceptionInterface.php │ ├── GlobalSession.php │ ├── Server.php │ ├── ServerException.php │ └── SessionInterface.php └── tests/ ├── _bootstrap.php ├── _output/ │ └── .gitignore ├── _support/ │ ├── DemoTester.php │ ├── Helper/ │ │ ├── Demo.php │ │ └── Unit.php │ ├── PhpBuiltInServer.php │ └── UnitTester.php ├── demo/ │ └── DemoCept.php ├── demo.suite.yml ├── unit/ │ ├── Broker/ │ │ ├── AttachTest.php │ │ └── RequestTest.php │ ├── Server/ │ │ ├── AttachTest.php │ │ └── BrokerSessionTest.php │ └── TokenTrait.php └── unit.suite.yml