├── .coveralls.yml ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── php_cs.dist ├── phpstan.neon ├── phpunit.xml.dist ├── src ├── Application.php ├── Http │ ├── Controller │ │ ├── AbstractController.php │ │ ├── AbstractJsonController.php │ │ ├── AbstractJsonViewController.php │ │ ├── AbstractRestfulController.php │ │ └── AbstractViewController.php │ ├── Exception │ │ ├── BadRequestException.php │ │ ├── ErrorHandler.php │ │ ├── HttpException.php │ │ ├── MethodNotAllowedException.php │ │ ├── NotFoundException.php │ │ └── UnauthorizedException.php │ ├── Helpers │ │ ├── Console.php │ │ ├── Cookie.php │ │ ├── Info.php │ │ ├── Loader.php │ │ ├── Mailer.php │ │ ├── Mailtrap │ │ │ └── Message.php │ │ └── Session.php │ ├── Middleware │ │ ├── EmitterMiddleware.php │ │ └── RouterMiddleware.php │ └── RequestHandler.php ├── Interfaces │ ├── ApplicationInterface.php │ ├── AuthInterface.php │ ├── ConfigInterface.php │ ├── ConsoleInterface.php │ ├── ContainerAwareInterface.php │ ├── ControllerInterface.php │ ├── CookieInterface.php │ ├── CsrfInterface.php │ ├── DatabaseInterface.php │ ├── EmitterInterface.php │ ├── ErrorHandlerInterface.php │ ├── FlashInterface.php │ ├── HashInterface.php │ ├── HttpExceptionInterface.php │ ├── JsonStrategyInterface.php │ ├── MailerInterface.php │ ├── MessageInterface.php │ ├── MiddlewareInvokerInterface.php │ ├── QueryInterface.php │ ├── ResponseAwareInterface.php │ ├── RestfulControllerInterface.php │ ├── RouteInterface.php │ ├── RouterInterface.php │ ├── SessionInterface.php │ ├── StrategyAwareInterface.php │ ├── StrategyInterface.php │ ├── ValidatorInterface.php │ └── ViewStrategyInterface.php ├── Strategy │ ├── AbstractStrategy.php │ ├── JsonStrategy.php │ └── ViewStrategy.php └── Traits │ ├── AuthAwareTrait.php │ ├── ConfigAwareTrait.php │ ├── ConsoleAwareTrait.php │ ├── ContainerAwareTrait.php │ ├── CookieAwareTrait.php │ ├── DatabaseAwareTrait.php │ ├── FlashAwareTrait.php │ ├── HashAwareTrait.php │ ├── InputAwareTrait.php │ ├── LoggerAwareTrait.php │ ├── ResponseAwareTrait.php │ ├── SessionAwareTrait.php │ └── ValidatorAwareTrait.php └── tests ├── ApplicationTest.php ├── Http ├── Controller │ ├── ControllerTest.php │ ├── SimpleJsonController.php │ ├── SimpleJsonViewController.php │ ├── SimpleMockController.php │ └── SimpleRestfulController.php ├── Exception │ ├── ErrorHandlerTest.php │ └── ExceptionsTest.php ├── Helpers │ └── HelpersTest.php └── Middleware │ └── MiddlewareTest.php ├── Strategy ├── JsonStrategyTest.php └── ViewStrategyTest.php └── Traits ├── SimpleAuthAware.php ├── SimpleConfigAware.php ├── SimpleConsoleAware.php ├── SimpleContainerAware.php ├── SimpleCookieAware.php ├── SimpleDatabaseAware.php ├── SimpleFlashAware.php ├── SimpleHashAware.php ├── SimpleInputAware.php ├── SimpleLoggerAware.php ├── SimpleSessionAware.php ├── SimpleValidatorAware.php └── TraitsTest.php /.coveralls.yml: -------------------------------------------------------------------------------- 1 | json_path: coveralls-upload.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/composer.json -------------------------------------------------------------------------------- /php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/php_cs.dist -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Http/Controller/AbstractController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Controller/AbstractController.php -------------------------------------------------------------------------------- /src/Http/Controller/AbstractJsonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Controller/AbstractJsonController.php -------------------------------------------------------------------------------- /src/Http/Controller/AbstractJsonViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Controller/AbstractJsonViewController.php -------------------------------------------------------------------------------- /src/Http/Controller/AbstractRestfulController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Controller/AbstractRestfulController.php -------------------------------------------------------------------------------- /src/Http/Controller/AbstractViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Controller/AbstractViewController.php -------------------------------------------------------------------------------- /src/Http/Exception/BadRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Exception/BadRequestException.php -------------------------------------------------------------------------------- /src/Http/Exception/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Exception/ErrorHandler.php -------------------------------------------------------------------------------- /src/Http/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Exception/HttpException.php -------------------------------------------------------------------------------- /src/Http/Exception/MethodNotAllowedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Exception/MethodNotAllowedException.php -------------------------------------------------------------------------------- /src/Http/Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Exception/NotFoundException.php -------------------------------------------------------------------------------- /src/Http/Exception/UnauthorizedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Exception/UnauthorizedException.php -------------------------------------------------------------------------------- /src/Http/Helpers/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Helpers/Console.php -------------------------------------------------------------------------------- /src/Http/Helpers/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Helpers/Cookie.php -------------------------------------------------------------------------------- /src/Http/Helpers/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Helpers/Info.php -------------------------------------------------------------------------------- /src/Http/Helpers/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Helpers/Loader.php -------------------------------------------------------------------------------- /src/Http/Helpers/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Helpers/Mailer.php -------------------------------------------------------------------------------- /src/Http/Helpers/Mailtrap/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Helpers/Mailtrap/Message.php -------------------------------------------------------------------------------- /src/Http/Helpers/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Helpers/Session.php -------------------------------------------------------------------------------- /src/Http/Middleware/EmitterMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Middleware/EmitterMiddleware.php -------------------------------------------------------------------------------- /src/Http/Middleware/RouterMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/Middleware/RouterMiddleware.php -------------------------------------------------------------------------------- /src/Http/RequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Http/RequestHandler.php -------------------------------------------------------------------------------- /src/Interfaces/ApplicationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/ApplicationInterface.php -------------------------------------------------------------------------------- /src/Interfaces/AuthInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/AuthInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/ConfigInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ConsoleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/ConsoleInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ContainerAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/ContainerAwareInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ControllerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/ControllerInterface.php -------------------------------------------------------------------------------- /src/Interfaces/CookieInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/CookieInterface.php -------------------------------------------------------------------------------- /src/Interfaces/CsrfInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/CsrfInterface.php -------------------------------------------------------------------------------- /src/Interfaces/DatabaseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/DatabaseInterface.php -------------------------------------------------------------------------------- /src/Interfaces/EmitterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/EmitterInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ErrorHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/ErrorHandlerInterface.php -------------------------------------------------------------------------------- /src/Interfaces/FlashInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/FlashInterface.php -------------------------------------------------------------------------------- /src/Interfaces/HashInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/HashInterface.php -------------------------------------------------------------------------------- /src/Interfaces/HttpExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/HttpExceptionInterface.php -------------------------------------------------------------------------------- /src/Interfaces/JsonStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/JsonStrategyInterface.php -------------------------------------------------------------------------------- /src/Interfaces/MailerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/MailerInterface.php -------------------------------------------------------------------------------- /src/Interfaces/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/MessageInterface.php -------------------------------------------------------------------------------- /src/Interfaces/MiddlewareInvokerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/MiddlewareInvokerInterface.php -------------------------------------------------------------------------------- /src/Interfaces/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/QueryInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ResponseAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/ResponseAwareInterface.php -------------------------------------------------------------------------------- /src/Interfaces/RestfulControllerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/RestfulControllerInterface.php -------------------------------------------------------------------------------- /src/Interfaces/RouteInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/RouteInterface.php -------------------------------------------------------------------------------- /src/Interfaces/RouterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/RouterInterface.php -------------------------------------------------------------------------------- /src/Interfaces/SessionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/SessionInterface.php -------------------------------------------------------------------------------- /src/Interfaces/StrategyAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/StrategyAwareInterface.php -------------------------------------------------------------------------------- /src/Interfaces/StrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/StrategyInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/ValidatorInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ViewStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Interfaces/ViewStrategyInterface.php -------------------------------------------------------------------------------- /src/Strategy/AbstractStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Strategy/AbstractStrategy.php -------------------------------------------------------------------------------- /src/Strategy/JsonStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Strategy/JsonStrategy.php -------------------------------------------------------------------------------- /src/Strategy/ViewStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Strategy/ViewStrategy.php -------------------------------------------------------------------------------- /src/Traits/AuthAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/AuthAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/ConfigAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/ConfigAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/ConsoleAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/ConsoleAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/ContainerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/ContainerAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/CookieAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/CookieAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/DatabaseAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/DatabaseAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/FlashAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/FlashAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/HashAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/HashAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/InputAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/InputAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/LoggerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/LoggerAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/ResponseAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/ResponseAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/SessionAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/SessionAwareTrait.php -------------------------------------------------------------------------------- /src/Traits/ValidatorAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/src/Traits/ValidatorAwareTrait.php -------------------------------------------------------------------------------- /tests/ApplicationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/ApplicationTest.php -------------------------------------------------------------------------------- /tests/Http/Controller/ControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Http/Controller/ControllerTest.php -------------------------------------------------------------------------------- /tests/Http/Controller/SimpleJsonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Http/Controller/SimpleJsonController.php -------------------------------------------------------------------------------- /tests/Http/Controller/SimpleJsonViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Http/Controller/SimpleJsonViewController.php -------------------------------------------------------------------------------- /tests/Http/Controller/SimpleMockController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Http/Controller/SimpleMockController.php -------------------------------------------------------------------------------- /tests/Http/Controller/SimpleRestfulController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Http/Controller/SimpleRestfulController.php -------------------------------------------------------------------------------- /tests/Http/Exception/ErrorHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Http/Exception/ErrorHandlerTest.php -------------------------------------------------------------------------------- /tests/Http/Exception/ExceptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Http/Exception/ExceptionsTest.php -------------------------------------------------------------------------------- /tests/Http/Helpers/HelpersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Http/Helpers/HelpersTest.php -------------------------------------------------------------------------------- /tests/Http/Middleware/MiddlewareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Http/Middleware/MiddlewareTest.php -------------------------------------------------------------------------------- /tests/Strategy/JsonStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Strategy/JsonStrategyTest.php -------------------------------------------------------------------------------- /tests/Strategy/ViewStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Strategy/ViewStrategyTest.php -------------------------------------------------------------------------------- /tests/Traits/SimpleAuthAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleAuthAware.php -------------------------------------------------------------------------------- /tests/Traits/SimpleConfigAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleConfigAware.php -------------------------------------------------------------------------------- /tests/Traits/SimpleConsoleAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleConsoleAware.php -------------------------------------------------------------------------------- /tests/Traits/SimpleContainerAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleContainerAware.php -------------------------------------------------------------------------------- /tests/Traits/SimpleCookieAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleCookieAware.php -------------------------------------------------------------------------------- /tests/Traits/SimpleDatabaseAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleDatabaseAware.php -------------------------------------------------------------------------------- /tests/Traits/SimpleFlashAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleFlashAware.php -------------------------------------------------------------------------------- /tests/Traits/SimpleHashAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleHashAware.php -------------------------------------------------------------------------------- /tests/Traits/SimpleInputAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleInputAware.php -------------------------------------------------------------------------------- /tests/Traits/SimpleLoggerAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleLoggerAware.php -------------------------------------------------------------------------------- /tests/Traits/SimpleSessionAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleSessionAware.php -------------------------------------------------------------------------------- /tests/Traits/SimpleValidatorAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/SimpleValidatorAware.php -------------------------------------------------------------------------------- /tests/Traits/TraitsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar2labs/wiring/HEAD/tests/Traits/TraitsTest.php --------------------------------------------------------------------------------