├── DependencyInjection ├── Configuration.php └── SensioCasExtension.php ├── README.md ├── Resources ├── config │ ├── Tests │ │ ├── config.yml │ │ └── routing.yml │ ├── cas.xml │ └── security_factories.xml ├── doc │ └── index.rst └── views │ └── Tests │ ├── validationErrorV2.twig │ └── validationSuccessV2.twig ├── Security ├── CasAuthenticationEntryPoint.php ├── CasAuthenticationFactory.php ├── CasAuthenticationListener.php ├── CasAuthenticationProvider.php ├── CasAuthenticationToken.php └── CasLogoutHandler.php ├── SensioCasBundle.php ├── Service ├── Cas.php ├── Protocol │ ├── Protocol.php │ ├── ProtocolInterface.php │ ├── V1Protocol.php │ └── V2Protocol.php ├── Request │ ├── CurlRequest.php │ ├── FileRequest.php │ ├── HttpRequest.php │ ├── Request.php │ └── RequestInterface.php └── Response │ ├── Response.php │ ├── ResponseInterface.php │ ├── V1Response.php │ └── V2Response.php └── Tests ├── BasicTests.php ├── Controller └── CasBundleTestsController.php └── ValidationTests.php /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/SensioCasExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/DependencyInjection/SensioCasExtension.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/Tests/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Resources/config/Tests/config.yml -------------------------------------------------------------------------------- /Resources/config/Tests/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Resources/config/Tests/routing.yml -------------------------------------------------------------------------------- /Resources/config/cas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Resources/config/cas.xml -------------------------------------------------------------------------------- /Resources/config/security_factories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Resources/config/security_factories.xml -------------------------------------------------------------------------------- /Resources/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Resources/doc/index.rst -------------------------------------------------------------------------------- /Resources/views/Tests/validationErrorV2.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Resources/views/Tests/validationErrorV2.twig -------------------------------------------------------------------------------- /Resources/views/Tests/validationSuccessV2.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Resources/views/Tests/validationSuccessV2.twig -------------------------------------------------------------------------------- /Security/CasAuthenticationEntryPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Security/CasAuthenticationEntryPoint.php -------------------------------------------------------------------------------- /Security/CasAuthenticationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Security/CasAuthenticationFactory.php -------------------------------------------------------------------------------- /Security/CasAuthenticationListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Security/CasAuthenticationListener.php -------------------------------------------------------------------------------- /Security/CasAuthenticationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Security/CasAuthenticationProvider.php -------------------------------------------------------------------------------- /Security/CasAuthenticationToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Security/CasAuthenticationToken.php -------------------------------------------------------------------------------- /Security/CasLogoutHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Security/CasLogoutHandler.php -------------------------------------------------------------------------------- /SensioCasBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/SensioCasBundle.php -------------------------------------------------------------------------------- /Service/Cas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Cas.php -------------------------------------------------------------------------------- /Service/Protocol/Protocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Protocol/Protocol.php -------------------------------------------------------------------------------- /Service/Protocol/ProtocolInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Protocol/ProtocolInterface.php -------------------------------------------------------------------------------- /Service/Protocol/V1Protocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Protocol/V1Protocol.php -------------------------------------------------------------------------------- /Service/Protocol/V2Protocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Protocol/V2Protocol.php -------------------------------------------------------------------------------- /Service/Request/CurlRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Request/CurlRequest.php -------------------------------------------------------------------------------- /Service/Request/FileRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Request/FileRequest.php -------------------------------------------------------------------------------- /Service/Request/HttpRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Request/HttpRequest.php -------------------------------------------------------------------------------- /Service/Request/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Request/Request.php -------------------------------------------------------------------------------- /Service/Request/RequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Request/RequestInterface.php -------------------------------------------------------------------------------- /Service/Response/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Response/Response.php -------------------------------------------------------------------------------- /Service/Response/ResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Response/ResponseInterface.php -------------------------------------------------------------------------------- /Service/Response/V1Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Response/V1Response.php -------------------------------------------------------------------------------- /Service/Response/V2Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Service/Response/V2Response.php -------------------------------------------------------------------------------- /Tests/BasicTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Tests/BasicTests.php -------------------------------------------------------------------------------- /Tests/Controller/CasBundleTestsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Tests/Controller/CasBundleTestsController.php -------------------------------------------------------------------------------- /Tests/ValidationTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/CasBundle/HEAD/Tests/ValidationTests.php --------------------------------------------------------------------------------