├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── VERSION ├── X ├── authors.md ├── benchmarks ├── Example │ └── BootstrapBench.php ├── autoload.php └── readme.md ├── changelog.md ├── circle.yml ├── composer.json ├── composer.lock ├── conformance └── readme.md ├── contributors.md ├── generate-docs.sh ├── migrations ├── 20150906233033_StatementRefs.php └── 20161003203242_ExtensionKeys.php ├── mongo-migrator.yaml ├── phpbench.json.dist ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── images │ │ ├── lxHive.logo.png │ │ └── lxHive.logo.svg │ └── styles │ │ ├── main.css │ │ └── pure │ │ ├── grids-responsive-min.css │ │ ├── grids-responsive-old-ie-min.css │ │ └── pure-min.css ├── index.php └── robots.txt ├── sami.config.php ├── src └── xAPI │ ├── Admin.php │ ├── Admin │ ├── AdminException.php │ ├── Auth.php │ ├── LrsReport.php │ ├── Setup.php │ ├── User.php │ └── Validator.php │ ├── AppInitException.php │ ├── BaseTrait.php │ ├── Bootstrap.php │ ├── Command.php │ ├── Config.php │ ├── Config │ └── Templates │ │ ├── Config.development.yml │ │ ├── Config.production.yml │ │ ├── Config.yml │ │ └── UnitTest.yml │ ├── Console │ ├── Application.php │ ├── BasicTokenCreateCommand.php │ ├── BasicTokenDeleteCommand.php │ ├── BasicTokenExpireCommand.php │ ├── BasicTokenListCommand.php │ ├── LrsReportCommand.php │ ├── OAuthClientCreateCommand.php │ ├── OAuthClientListCommand.php │ ├── SetupCommand.php │ └── UserCreateCommand.php │ ├── Container.php │ ├── ContainerException.php │ ├── Controller.php │ ├── Controller │ ├── Error.php │ └── V10 │ │ ├── About.php │ │ ├── Activities.php │ │ ├── Activities │ │ ├── Profile.php │ │ └── State.php │ │ ├── Agents.php │ │ ├── Agents │ │ └── Profile.php │ │ ├── Attachments.php │ │ ├── Auth │ │ └── Tokens.php │ │ ├── Home.php │ │ ├── Oauth │ │ ├── Authorize.php │ │ ├── Login.php │ │ └── Token.php │ │ └── Statements.php │ ├── ControllerInterface.php │ ├── Document.php │ ├── Document │ ├── AccessToken.php │ ├── BasicToken.php │ ├── Generic.php │ ├── OAuthToken.php │ └── Statement.php │ ├── DocumentInterface.php │ ├── DocumentState.php │ ├── Extensions │ ├── .gitignore │ ├── ExtendedQuery │ │ ├── Controller │ │ │ └── V10 │ │ │ │ └── ExtendedQuery.php │ │ ├── ExtendedQuery.php │ │ ├── Service │ │ │ └── Statement.php │ │ ├── Storage │ │ │ ├── Adapter │ │ │ │ └── Mongo │ │ │ │ │ └── ExtendedStatement.php │ │ │ └── Query │ │ │ │ └── ExtendedStatementInterface.php │ │ └── View │ │ │ └── V10 │ │ │ └── ProjectedStatement.php │ ├── ExtensionException.php │ └── ExtensionInterface.php │ ├── HttpException.php │ ├── Parser │ ├── ParserInterface.php │ ├── ParserResult.php │ └── PsrRequest.php │ ├── Routes.php │ ├── Service.php │ ├── Service │ ├── Activity.php │ ├── ActivityProfile.php │ ├── ActivityState.php │ ├── AgentProfile.php │ ├── Attachment.php │ ├── Auth.php │ ├── Auth │ │ ├── AuthInterface.php │ │ ├── Basic.php │ │ ├── Exception.php │ │ └── OAuth.php │ ├── Exception.php │ ├── Log.php │ ├── Statement.php │ └── User.php │ ├── Storage │ ├── Adapter │ │ ├── Mongo.php │ │ └── Mongo │ │ │ ├── Activity.php │ │ │ ├── ActivityProfile.php │ │ │ ├── ActivityState.php │ │ │ ├── AgentProfile.php │ │ │ ├── Attachment.php │ │ │ ├── BasicAuth.php │ │ │ ├── Expression.php │ │ │ ├── ExpressionInterface.php │ │ │ ├── FieldType.php │ │ │ ├── Log.php │ │ │ ├── OAuth.php │ │ │ ├── OAuthClients.php │ │ │ ├── Schema.php │ │ │ ├── Statement.php │ │ │ └── User.php │ ├── AdapterException.php │ ├── AdapterInterface.php │ ├── Provider.php │ ├── Query │ │ ├── ActivityInterface.php │ │ ├── ActivityProfileInterface.php │ │ ├── ActivityStateInterface.php │ │ ├── AgentProfileInterface.php │ │ ├── AttachmentInterface.php │ │ ├── BasicAuthInterface.php │ │ ├── DeletionResult.php │ │ ├── DocumentResult.php │ │ ├── LogInterface.php │ │ ├── OAuthClientsInterface.php │ │ ├── OAuthInterface.php │ │ ├── QueryInterface.php │ │ ├── StatementInterface.php │ │ ├── StatementResult.php │ │ └── UserInterface.php │ └── SchemaInterface.php │ ├── Util │ ├── ArrayableInterface.php │ ├── Collection.php │ ├── CollectionInterface.php │ ├── Date.php │ ├── Filesystem.php │ ├── OAuth.php │ ├── Versioning.php │ └── xAPI.php │ ├── Validator.php │ ├── Validator │ ├── Exception.php │ ├── JsonSchema │ │ └── Constraints │ │ │ ├── Factory.php │ │ │ └── FormatConstraint.php │ └── V10 │ │ ├── Attachment.php │ │ ├── Schema │ │ └── Statements.json │ │ └── Statement.php │ ├── View.php │ └── View │ └── V10 │ ├── About.php │ ├── Activity.php │ ├── ActivityProfile.php │ ├── ActivityState.php │ ├── Agent.php │ ├── AgentProfile.php │ ├── BaseDocument.php │ ├── BasicAuth │ └── AccessToken.php │ ├── OAuth │ ├── AccessToken.php │ ├── Authorize.php │ ├── Login.php │ └── Templates │ │ ├── authorize.twig │ │ ├── footer.twig │ │ ├── head.twig │ │ └── login.twig │ └── Statements.php └── tests ├── .gitignore ├── Config.template.php ├── Integration ├── Parser │ └── PsrRequestParserTest.php └── StreamContext │ ├── Stream.php │ └── StreamContextTest.php ├── MongoTestCase.php ├── TestCase.php ├── Unit ├── ExampleTest.php └── PHPUnit │ ├── BootstrapUnitTestDatabaseTest.php │ ├── CoherentContainersTest.php │ └── MongoTestCaseTest.php ├── autoload.php ├── readme.md └── src └── xAPI ├── Admin ├── SetupTest.php └── ValidatorTest.php ├── BaseTraitTest.php ├── BootstrapTest.php ├── ConfigTest.php ├── ContainerTest.php ├── Extensions └── ExtensionExceptionTest.php ├── Service ├── AuthTest.php └── mock_config_supported_auth_scopes.json ├── Storage └── Adapter │ ├── Mongo │ ├── ActivityProfileTest.php │ ├── ActivityStateTest.php │ ├── ActivityTest.php │ ├── AgentProfileTest.php │ ├── AttachmentTest.php │ ├── BasicAuthTest.php │ ├── LogTest.php │ ├── OAuthClientsTest.php │ ├── OAuthTest.php │ ├── SchemaTest.php │ ├── StatementTest.php │ └── UserTest.php │ └── MongoTest.php ├── Util └── xAPITest.php ├── Validator.php └── Validator └── Validator.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.10.0 2 | -------------------------------------------------------------------------------- /X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/X -------------------------------------------------------------------------------- /authors.md: -------------------------------------------------------------------------------- 1 | Jakob Murko - sraka1 2 | -------------------------------------------------------------------------------- /benchmarks/Example/BootstrapBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/benchmarks/Example/BootstrapBench.php -------------------------------------------------------------------------------- /benchmarks/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/benchmarks/autoload.php -------------------------------------------------------------------------------- /benchmarks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/benchmarks/readme.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/changelog.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/circle.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/composer.lock -------------------------------------------------------------------------------- /conformance/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/conformance/readme.md -------------------------------------------------------------------------------- /contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/contributors.md -------------------------------------------------------------------------------- /generate-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/generate-docs.sh -------------------------------------------------------------------------------- /migrations/20150906233033_StatementRefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/migrations/20150906233033_StatementRefs.php -------------------------------------------------------------------------------- /migrations/20161003203242_ExtensionKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/migrations/20161003203242_ExtensionKeys.php -------------------------------------------------------------------------------- /mongo-migrator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/mongo-migrator.yaml -------------------------------------------------------------------------------- /phpbench.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/phpbench.json.dist -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/images/lxHive.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/public/assets/images/lxHive.logo.png -------------------------------------------------------------------------------- /public/assets/images/lxHive.logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/public/assets/images/lxHive.logo.svg -------------------------------------------------------------------------------- /public/assets/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/public/assets/styles/main.css -------------------------------------------------------------------------------- /public/assets/styles/pure/grids-responsive-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/public/assets/styles/pure/grids-responsive-min.css -------------------------------------------------------------------------------- /public/assets/styles/pure/grids-responsive-old-ie-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/public/assets/styles/pure/grids-responsive-old-ie-min.css -------------------------------------------------------------------------------- /public/assets/styles/pure/pure-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/public/assets/styles/pure/pure-min.css -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /sami.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/sami.config.php -------------------------------------------------------------------------------- /src/xAPI/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Admin.php -------------------------------------------------------------------------------- /src/xAPI/Admin/AdminException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Admin/AdminException.php -------------------------------------------------------------------------------- /src/xAPI/Admin/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Admin/Auth.php -------------------------------------------------------------------------------- /src/xAPI/Admin/LrsReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Admin/LrsReport.php -------------------------------------------------------------------------------- /src/xAPI/Admin/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Admin/Setup.php -------------------------------------------------------------------------------- /src/xAPI/Admin/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Admin/User.php -------------------------------------------------------------------------------- /src/xAPI/Admin/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Admin/Validator.php -------------------------------------------------------------------------------- /src/xAPI/AppInitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/AppInitException.php -------------------------------------------------------------------------------- /src/xAPI/BaseTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/BaseTrait.php -------------------------------------------------------------------------------- /src/xAPI/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Bootstrap.php -------------------------------------------------------------------------------- /src/xAPI/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Command.php -------------------------------------------------------------------------------- /src/xAPI/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Config.php -------------------------------------------------------------------------------- /src/xAPI/Config/Templates/Config.development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Config/Templates/Config.development.yml -------------------------------------------------------------------------------- /src/xAPI/Config/Templates/Config.production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Config/Templates/Config.production.yml -------------------------------------------------------------------------------- /src/xAPI/Config/Templates/Config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Config/Templates/Config.yml -------------------------------------------------------------------------------- /src/xAPI/Config/Templates/UnitTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Config/Templates/UnitTest.yml -------------------------------------------------------------------------------- /src/xAPI/Console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Console/Application.php -------------------------------------------------------------------------------- /src/xAPI/Console/BasicTokenCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Console/BasicTokenCreateCommand.php -------------------------------------------------------------------------------- /src/xAPI/Console/BasicTokenDeleteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Console/BasicTokenDeleteCommand.php -------------------------------------------------------------------------------- /src/xAPI/Console/BasicTokenExpireCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Console/BasicTokenExpireCommand.php -------------------------------------------------------------------------------- /src/xAPI/Console/BasicTokenListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Console/BasicTokenListCommand.php -------------------------------------------------------------------------------- /src/xAPI/Console/LrsReportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Console/LrsReportCommand.php -------------------------------------------------------------------------------- /src/xAPI/Console/OAuthClientCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Console/OAuthClientCreateCommand.php -------------------------------------------------------------------------------- /src/xAPI/Console/OAuthClientListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Console/OAuthClientListCommand.php -------------------------------------------------------------------------------- /src/xAPI/Console/SetupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Console/SetupCommand.php -------------------------------------------------------------------------------- /src/xAPI/Console/UserCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Console/UserCreateCommand.php -------------------------------------------------------------------------------- /src/xAPI/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Container.php -------------------------------------------------------------------------------- /src/xAPI/ContainerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/ContainerException.php -------------------------------------------------------------------------------- /src/xAPI/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller.php -------------------------------------------------------------------------------- /src/xAPI/Controller/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/Error.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/About.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/About.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Activities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Activities.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Activities/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Activities/Profile.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Activities/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Activities/State.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Agents.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Agents/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Agents/Profile.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Attachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Attachments.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Auth/Tokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Auth/Tokens.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Home.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Oauth/Authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Oauth/Authorize.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Oauth/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Oauth/Login.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Oauth/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Oauth/Token.php -------------------------------------------------------------------------------- /src/xAPI/Controller/V10/Statements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Controller/V10/Statements.php -------------------------------------------------------------------------------- /src/xAPI/ControllerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/ControllerInterface.php -------------------------------------------------------------------------------- /src/xAPI/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Document.php -------------------------------------------------------------------------------- /src/xAPI/Document/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Document/AccessToken.php -------------------------------------------------------------------------------- /src/xAPI/Document/BasicToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Document/BasicToken.php -------------------------------------------------------------------------------- /src/xAPI/Document/Generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Document/Generic.php -------------------------------------------------------------------------------- /src/xAPI/Document/OAuthToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Document/OAuthToken.php -------------------------------------------------------------------------------- /src/xAPI/Document/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Document/Statement.php -------------------------------------------------------------------------------- /src/xAPI/DocumentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/DocumentInterface.php -------------------------------------------------------------------------------- /src/xAPI/DocumentState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/DocumentState.php -------------------------------------------------------------------------------- /src/xAPI/Extensions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Extensions/.gitignore -------------------------------------------------------------------------------- /src/xAPI/Extensions/ExtendedQuery/Controller/V10/ExtendedQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Extensions/ExtendedQuery/Controller/V10/ExtendedQuery.php -------------------------------------------------------------------------------- /src/xAPI/Extensions/ExtendedQuery/ExtendedQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Extensions/ExtendedQuery/ExtendedQuery.php -------------------------------------------------------------------------------- /src/xAPI/Extensions/ExtendedQuery/Service/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Extensions/ExtendedQuery/Service/Statement.php -------------------------------------------------------------------------------- /src/xAPI/Extensions/ExtendedQuery/Storage/Adapter/Mongo/ExtendedStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Extensions/ExtendedQuery/Storage/Adapter/Mongo/ExtendedStatement.php -------------------------------------------------------------------------------- /src/xAPI/Extensions/ExtendedQuery/Storage/Query/ExtendedStatementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Extensions/ExtendedQuery/Storage/Query/ExtendedStatementInterface.php -------------------------------------------------------------------------------- /src/xAPI/Extensions/ExtendedQuery/View/V10/ProjectedStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Extensions/ExtendedQuery/View/V10/ProjectedStatement.php -------------------------------------------------------------------------------- /src/xAPI/Extensions/ExtensionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Extensions/ExtensionException.php -------------------------------------------------------------------------------- /src/xAPI/Extensions/ExtensionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Extensions/ExtensionInterface.php -------------------------------------------------------------------------------- /src/xAPI/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/HttpException.php -------------------------------------------------------------------------------- /src/xAPI/Parser/ParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Parser/ParserInterface.php -------------------------------------------------------------------------------- /src/xAPI/Parser/ParserResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Parser/ParserResult.php -------------------------------------------------------------------------------- /src/xAPI/Parser/PsrRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Parser/PsrRequest.php -------------------------------------------------------------------------------- /src/xAPI/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Routes.php -------------------------------------------------------------------------------- /src/xAPI/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service.php -------------------------------------------------------------------------------- /src/xAPI/Service/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/Activity.php -------------------------------------------------------------------------------- /src/xAPI/Service/ActivityProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/ActivityProfile.php -------------------------------------------------------------------------------- /src/xAPI/Service/ActivityState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/ActivityState.php -------------------------------------------------------------------------------- /src/xAPI/Service/AgentProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/AgentProfile.php -------------------------------------------------------------------------------- /src/xAPI/Service/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/Attachment.php -------------------------------------------------------------------------------- /src/xAPI/Service/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/Auth.php -------------------------------------------------------------------------------- /src/xAPI/Service/Auth/AuthInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/Auth/AuthInterface.php -------------------------------------------------------------------------------- /src/xAPI/Service/Auth/Basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/Auth/Basic.php -------------------------------------------------------------------------------- /src/xAPI/Service/Auth/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/Auth/Exception.php -------------------------------------------------------------------------------- /src/xAPI/Service/Auth/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/Auth/OAuth.php -------------------------------------------------------------------------------- /src/xAPI/Service/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/Exception.php -------------------------------------------------------------------------------- /src/xAPI/Service/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/Log.php -------------------------------------------------------------------------------- /src/xAPI/Service/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/Statement.php -------------------------------------------------------------------------------- /src/xAPI/Service/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Service/User.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/Activity.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/ActivityProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/ActivityProfile.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/ActivityState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/ActivityState.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/AgentProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/AgentProfile.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/Attachment.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/BasicAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/BasicAuth.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/Expression.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/ExpressionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/ExpressionInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/FieldType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/FieldType.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/Log.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/OAuth.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/OAuthClients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/OAuthClients.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/Schema.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/Statement.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Adapter/Mongo/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Adapter/Mongo/User.php -------------------------------------------------------------------------------- /src/xAPI/Storage/AdapterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/AdapterException.php -------------------------------------------------------------------------------- /src/xAPI/Storage/AdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/AdapterInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Provider.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/ActivityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/ActivityInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/ActivityProfileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/ActivityProfileInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/ActivityStateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/ActivityStateInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/AgentProfileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/AgentProfileInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/AttachmentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/AttachmentInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/BasicAuthInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/BasicAuthInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/DeletionResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/DeletionResult.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/DocumentResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/DocumentResult.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/LogInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/LogInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/OAuthClientsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/OAuthClientsInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/OAuthInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/OAuthInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/QueryInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/StatementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/StatementInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/StatementResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/StatementResult.php -------------------------------------------------------------------------------- /src/xAPI/Storage/Query/UserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/Query/UserInterface.php -------------------------------------------------------------------------------- /src/xAPI/Storage/SchemaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Storage/SchemaInterface.php -------------------------------------------------------------------------------- /src/xAPI/Util/ArrayableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Util/ArrayableInterface.php -------------------------------------------------------------------------------- /src/xAPI/Util/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Util/Collection.php -------------------------------------------------------------------------------- /src/xAPI/Util/CollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Util/CollectionInterface.php -------------------------------------------------------------------------------- /src/xAPI/Util/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Util/Date.php -------------------------------------------------------------------------------- /src/xAPI/Util/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Util/Filesystem.php -------------------------------------------------------------------------------- /src/xAPI/Util/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Util/OAuth.php -------------------------------------------------------------------------------- /src/xAPI/Util/Versioning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Util/Versioning.php -------------------------------------------------------------------------------- /src/xAPI/Util/xAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Util/xAPI.php -------------------------------------------------------------------------------- /src/xAPI/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Validator.php -------------------------------------------------------------------------------- /src/xAPI/Validator/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Validator/Exception.php -------------------------------------------------------------------------------- /src/xAPI/Validator/JsonSchema/Constraints/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Validator/JsonSchema/Constraints/Factory.php -------------------------------------------------------------------------------- /src/xAPI/Validator/JsonSchema/Constraints/FormatConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Validator/JsonSchema/Constraints/FormatConstraint.php -------------------------------------------------------------------------------- /src/xAPI/Validator/V10/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Validator/V10/Attachment.php -------------------------------------------------------------------------------- /src/xAPI/Validator/V10/Schema/Statements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Validator/V10/Schema/Statements.json -------------------------------------------------------------------------------- /src/xAPI/Validator/V10/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/Validator/V10/Statement.php -------------------------------------------------------------------------------- /src/xAPI/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/About.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/About.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/Activity.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/ActivityProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/ActivityProfile.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/ActivityState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/ActivityState.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/Agent.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/AgentProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/AgentProfile.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/BaseDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/BaseDocument.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/BasicAuth/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/BasicAuth/AccessToken.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/OAuth/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/OAuth/AccessToken.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/OAuth/Authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/OAuth/Authorize.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/OAuth/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/OAuth/Login.php -------------------------------------------------------------------------------- /src/xAPI/View/V10/OAuth/Templates/authorize.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/OAuth/Templates/authorize.twig -------------------------------------------------------------------------------- /src/xAPI/View/V10/OAuth/Templates/footer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/OAuth/Templates/footer.twig -------------------------------------------------------------------------------- /src/xAPI/View/V10/OAuth/Templates/head.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/OAuth/Templates/head.twig -------------------------------------------------------------------------------- /src/xAPI/View/V10/OAuth/Templates/login.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/OAuth/Templates/login.twig -------------------------------------------------------------------------------- /src/xAPI/View/V10/Statements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/src/xAPI/View/V10/Statements.php -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | Config.php 2 | -------------------------------------------------------------------------------- /tests/Config.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/Config.template.php -------------------------------------------------------------------------------- /tests/Integration/Parser/PsrRequestParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/Integration/Parser/PsrRequestParserTest.php -------------------------------------------------------------------------------- /tests/Integration/StreamContext/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/Integration/StreamContext/Stream.php -------------------------------------------------------------------------------- /tests/Integration/StreamContext/StreamContextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/Integration/StreamContext/StreamContextTest.php -------------------------------------------------------------------------------- /tests/MongoTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/MongoTestCase.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/Unit/PHPUnit/BootstrapUnitTestDatabaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/Unit/PHPUnit/BootstrapUnitTestDatabaseTest.php -------------------------------------------------------------------------------- /tests/Unit/PHPUnit/CoherentContainersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/Unit/PHPUnit/CoherentContainersTest.php -------------------------------------------------------------------------------- /tests/Unit/PHPUnit/MongoTestCaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/Unit/PHPUnit/MongoTestCaseTest.php -------------------------------------------------------------------------------- /tests/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/autoload.php -------------------------------------------------------------------------------- /tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/readme.md -------------------------------------------------------------------------------- /tests/src/xAPI/Admin/SetupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Admin/SetupTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Admin/ValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Admin/ValidatorTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/BaseTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/BaseTraitTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/BootstrapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/BootstrapTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/ConfigTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/ContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/ContainerTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Extensions/ExtensionExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Extensions/ExtensionExceptionTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Service/AuthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Service/AuthTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Service/mock_config_supported_auth_scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Service/mock_config_supported_auth_scopes.json -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/ActivityProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/ActivityProfileTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/ActivityStateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/ActivityStateTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/ActivityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/ActivityTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/AgentProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/AgentProfileTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/AttachmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/AttachmentTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/BasicAuthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/BasicAuthTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/LogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/LogTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/OAuthClientsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/OAuthClientsTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/OAuthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/OAuthTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/SchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/SchemaTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/StatementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/StatementTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/Mongo/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/Mongo/UserTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Storage/Adapter/MongoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Storage/Adapter/MongoTest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Util/xAPITest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Util/xAPITest.php -------------------------------------------------------------------------------- /tests/src/xAPI/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Validator.php -------------------------------------------------------------------------------- /tests/src/xAPI/Validator/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3i/lxHive/HEAD/tests/src/xAPI/Validator/Validator.php --------------------------------------------------------------------------------