├── .php_cs ├── .travis.yml ├── autoload.php ├── codecept ├── _bootstrap.php ├── _data │ └── dump.sql ├── _support │ ├── AcceptanceTester.php │ ├── FunctionalTester.php │ ├── Helper │ │ ├── Acceptance.php │ │ ├── Functional.php │ │ └── Unit.php │ ├── UnitTester.php │ └── _generated │ │ ├── AcceptanceTesterActions.php │ │ ├── FunctionalTesterActions.php │ │ └── UnitTesterActions.php ├── acceptance.suite.yml ├── acceptance │ └── _bootstrap.php ├── functional.suite.yml ├── functional │ └── _bootstrap.php ├── unit.suite.yml └── unit │ ├── MailTest.php │ ├── TranslationTest.php │ ├── ValidatorTest.php │ ├── _bootstrap.php │ └── resources │ └── lang │ └── en │ ├── folder │ └── site.php │ └── simple.php ├── codeception.yml ├── composer.json ├── contributing.md ├── php-cs-fixer ├── phpunit.xml ├── readme.md ├── src └── Clarity │ ├── Console │ ├── App │ │ ├── ControllerCommand.php │ │ ├── ModuleCommand.php │ │ ├── RouteCommand.php │ │ └── stubs │ │ │ ├── controller │ │ │ ├── controller.stub │ │ │ └── functions.stub │ │ │ ├── module │ │ │ ├── base_controller.stub │ │ │ ├── base_route.stub │ │ │ ├── base_route_provider.stub │ │ │ └── index.stub │ │ │ └── route │ │ │ ├── functions.stub │ │ │ └── route.stub │ ├── Brood.php │ ├── CLI.php │ ├── Clear │ │ ├── AllCommand.php │ │ ├── CacheCommand.php │ │ ├── ClearTrait.php │ │ ├── CompiledCommand.php │ │ ├── LogsCommand.php │ │ ├── SessionCommand.php │ │ └── ViewsCommand.php │ ├── DB │ │ ├── AbstractCommand.php │ │ ├── Create.php │ │ ├── Migrate.php │ │ ├── Rollback.php │ │ ├── SeedCreate.php │ │ ├── SeedFactory.php │ │ ├── SeedRun.php │ │ └── Status.php │ ├── Lists │ │ ├── RoutesCommand.php │ │ └── ServicesCommand.php │ ├── Mail │ │ └── InlinerCommand.php │ ├── Make │ │ ├── CollectionCommand.php │ │ ├── ConsoleCommand.php │ │ ├── ModelCommand.php │ │ └── stubs │ │ │ ├── makeCollection.stub │ │ │ ├── makeConsole.stub │ │ │ └── makeModel.stub │ ├── Queue │ │ └── Listen.php │ ├── README.md │ ├── Script │ │ └── RunCommand.php │ ├── Server │ │ ├── BenchmarkCommand.php │ │ ├── ClutchCommand.php │ │ ├── EnvCommand.php │ │ ├── Optimize │ │ │ └── config.php │ │ ├── OptimizeCommand.php │ │ └── ServeCommand.php │ ├── Vendor │ │ ├── NewCommand.php │ │ ├── PublishCommand.php │ │ └── stubs │ │ │ └── ServiceProvider.stub │ └── composer.json │ ├── Contracts │ ├── Flysystem │ │ └── AdapterInterface.php │ ├── Mail │ │ └── MailInterface.php │ ├── Providers │ │ └── ModuleInterface.php │ └── composer.json │ ├── Exceptions │ ├── AccessNotAllowedException.php │ ├── ControllerNotFoundException.php │ ├── FileNotFoundException.php │ ├── Handler.php │ ├── ServiceAliasNotFoundException.php │ ├── ViewFileNotFoundException.php │ └── composer.json │ ├── Facades │ ├── Auth.php │ ├── BehatMink.php │ ├── Cache.php │ ├── Config.php │ ├── Crypt.php │ ├── DB.php │ ├── Facade.php │ ├── Filter.php │ ├── Flash.php │ ├── Flysystem.php │ ├── FlysystemManager.php │ ├── Log.php │ ├── Queue.php │ ├── Redirect.php │ ├── Request.php │ ├── Response.php │ ├── Route.php │ ├── Security.php │ ├── Session.php │ ├── Tag.php │ ├── URL.php │ ├── Validator.php │ ├── View.php │ └── composer.json │ ├── Kernel │ ├── Kernel.php │ ├── KernelTrait.php │ └── composer.json │ ├── Lang │ ├── Lang.php │ ├── LangFacade.php │ ├── LangServiceProvider.php │ └── composer.json │ ├── Mail │ ├── Mail.php │ ├── MailFacade.php │ ├── MailServiceProvider.php │ ├── Mailgun │ │ └── Mailgun.php │ ├── SwiftMailer │ │ ├── MailMailer.php │ │ ├── SendmailMailer.php │ │ ├── SmtpMailer.php │ │ └── Swift.php │ └── composer.json │ ├── Providers │ ├── Aliaser.php │ ├── Annotations.php │ ├── Application.php │ ├── Auth.php │ ├── BehatMink.php │ ├── Cache.php │ ├── CollectionManager.php │ ├── Console.php │ ├── Cookies.php │ ├── Crypt.php │ ├── DB.php │ ├── Dispatcher.php │ ├── Escaper.php │ ├── EventsManager.php │ ├── Filter.php │ ├── Flash.php │ ├── Flysystem.php │ ├── Log.php │ ├── ModelManager.php │ ├── ModelMetadata.php │ ├── Module.php │ ├── Mongo.php │ ├── Queue.php │ ├── Redirect.php │ ├── Request.php │ ├── Response.php │ ├── Router.php │ ├── RouterAnnotations.php │ ├── Security.php │ ├── ServiceProvider.php │ ├── Session.php │ ├── Tag.php │ ├── TransactionManager.php │ ├── URL.php │ ├── Validator.php │ └── composer.json │ ├── Services │ ├── Container.php │ ├── Mapper.php │ ├── ServiceMagicMethods.php │ └── composer.json │ ├── Support │ ├── Auth │ │ └── Auth.php │ ├── Curl │ │ ├── README.md │ │ └── RESTful.php │ ├── DB │ │ └── Factory.php │ ├── Helpers │ │ ├── facade.php │ │ ├── init.php │ │ ├── misc.php │ │ ├── paths.php │ │ ├── slayer.php │ │ └── url.php │ ├── Phalcon │ │ ├── Crypt.php │ │ ├── Di.php │ │ ├── Events │ │ │ └── Manager.php │ │ ├── Http │ │ │ ├── Middleware.php │ │ │ └── Request.php │ │ ├── Mvc │ │ │ ├── Application.php │ │ │ ├── Collection.php │ │ │ ├── Controller.php │ │ │ ├── Dispatcher.php │ │ │ ├── Router.php │ │ │ ├── URL.php │ │ │ └── View.php │ │ └── Session │ │ │ └── Files.php │ ├── Phinx │ │ ├── Db │ │ │ └── Table.php │ │ ├── Migration │ │ │ └── AbstractMigration.php │ │ └── Seed │ │ │ └── AbstractSeed.php │ ├── Queue │ │ ├── Beanstalkd │ │ │ └── Beanstalkd.php │ │ ├── DriverInterface.php │ │ └── Queue.php │ ├── Redirect │ │ └── Redirect.php │ ├── WithMagicMethodTrait.php │ └── composer.json │ ├── TestSuite │ ├── Behat │ │ └── Mink │ │ │ ├── Adapters │ │ │ ├── DriverInterface.php │ │ │ └── Goutte.php │ │ │ ├── Mink.php │ │ │ └── config.php │ └── composer.json │ ├── Util │ ├── Benchmark │ │ ├── Benchmark.php │ │ └── BenchmarkServiceProvider.php │ ├── Composer │ │ ├── Builder.php │ │ └── TestConsole.php │ ├── Validator │ │ ├── Mapper.php │ │ ├── Tests │ │ │ └── Sample.php │ │ └── Validator.php │ └── composer.json │ └── View │ ├── Blade │ └── BladeAdapter.php │ ├── ViewServiceProvider.php │ ├── Volt │ └── VoltAdapter.php │ └── composer.json └── tests ├── .env.travis ├── clarity ├── Console │ ├── AppTest.php │ ├── CLITest.php │ └── ServerTest.php ├── Providers │ └── ResolverTest.php └── Support │ ├── CurlTest.php │ ├── HelpersTest.php │ └── Phalcon │ ├── HttpTest.php │ └── MvcTest.php └── slayer ├── acceptance └── WelcomeAndLoginAndRegisterTest.php └── config └── AppTest.php /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solid-layer/framework/HEAD/.php_cs -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solid-layer/framework/HEAD/.travis.yml -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solid-layer/framework/HEAD/autoload.php -------------------------------------------------------------------------------- /codecept/_bootstrap.php: -------------------------------------------------------------------------------- 1 |