├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── formats ├── factory-fields.json ├── fields.json ├── foreign-keys.json ├── images.json ├── relations.json ├── rules.json └── schema.json ├── install.sh ├── lumen-test ├── .env ├── .gitignore ├── app │ ├── Console │ │ ├── Commands │ │ │ └── .gitkeep │ │ └── Kernel.php │ ├── Events │ │ └── Event.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ └── Controller.php │ │ ├── Middleware │ │ │ └── ExampleMiddleware.php │ │ └── routes.php │ ├── Jobs │ │ └── Job.php │ ├── Listeners │ │ └── Listener.php │ └── Providers │ │ ├── AppServiceProvider.php │ │ └── EventServiceProvider.php ├── artisan ├── bootstrap │ └── app.php ├── clean.sh ├── codeception.yml ├── composer.json ├── database │ ├── factories │ │ └── ModelFactory.php │ ├── migrations │ │ └── .gitkeep │ └── seeds │ │ └── DatabaseSeeder.php ├── phpunit.xml ├── public │ ├── .htaccess │ └── index.php ├── readme.md ├── resources │ ├── lang │ │ └── en │ │ │ └── validation.php │ └── views │ │ └── .gitkeep ├── server.php ├── storage │ ├── app │ │ └── .gitignore │ ├── database.sqlite │ ├── framework │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore └── tests │ ├── _bootstrap.php │ ├── _data │ ├── ResourcesTest.yml │ └── dump.sql │ ├── _output │ └── .gitignore │ ├── _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 │ ├── ControllerCommandCept.php │ ├── ControllerRestActionsCommandCept.php │ ├── FactoryCommandCept.php │ ├── MigrationCommandCept.php │ ├── ModelCommandCept.php │ ├── PivotSeederCommandCept.php │ ├── PivotTableCommandCept.php │ ├── ResourceCommandCept.php │ ├── ResourcesCommandCept.php │ ├── ResourcesWithLaravelRoutesCept.php │ ├── RouteCommandCept.php │ ├── SeederCommandCept.php │ └── _bootstrap.php │ ├── functional.suite.yml │ ├── functional │ └── _bootstrap.php │ ├── unit.suite.yml │ └── unit │ └── _bootstrap.php ├── src ├── Argument │ ├── ArgumentFormat.php │ ├── ArgumentFormatLoader.php │ └── ArgumentParser.php ├── Commands │ ├── BaseCommand.php │ ├── ControllerCommand.php │ ├── ControllerRestActionsCommand.php │ ├── FactoryCommand.php │ ├── MigrationCommand.php │ ├── ModelCommand.php │ ├── PivotSeederCommand.php │ ├── PivotTableCommand.php │ ├── ResourceCommand.php │ ├── ResourcesCommand.php │ ├── RouteCommand.php │ ├── SeederCommand.php │ └── TestCommand.php ├── CommandsServiceProvider.php ├── Exceptions │ ├── ArgumentFormatException.php │ ├── ArgumentParserException.php │ └── TemplateException.php └── Template │ ├── Template.php │ └── TemplateLoader.php ├── templates ├── controller.wnt ├── controller │ └── rest-actions.wnt ├── factory.wnt ├── factory │ └── field.wnt ├── migration.wnt ├── migration │ ├── foreign-key.wnt │ └── on-constraint.wnt ├── model.wnt ├── model │ ├── image.wnt │ ├── relation-with-timestamps.wnt │ ├── relation.wnt │ └── rule.wnt ├── pivot-seeder.wnt ├── routes-laravel.wnt ├── routes.wnt ├── seeder.wnt └── test.wnt └── test.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/composer.lock -------------------------------------------------------------------------------- /formats/factory-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/formats/factory-fields.json -------------------------------------------------------------------------------- /formats/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/formats/fields.json -------------------------------------------------------------------------------- /formats/foreign-keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/formats/foreign-keys.json -------------------------------------------------------------------------------- /formats/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/formats/images.json -------------------------------------------------------------------------------- /formats/relations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/formats/relations.json -------------------------------------------------------------------------------- /formats/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/formats/rules.json -------------------------------------------------------------------------------- /formats/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/formats/schema.json -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/install.sh -------------------------------------------------------------------------------- /lumen-test/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/.env -------------------------------------------------------------------------------- /lumen-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/.gitignore -------------------------------------------------------------------------------- /lumen-test/app/Console/Commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lumen-test/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/app/Console/Kernel.php -------------------------------------------------------------------------------- /lumen-test/app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/app/Events/Event.php -------------------------------------------------------------------------------- /lumen-test/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /lumen-test/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /lumen-test/app/Http/Middleware/ExampleMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/app/Http/Middleware/ExampleMiddleware.php -------------------------------------------------------------------------------- /lumen-test/app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/app/Http/routes.php -------------------------------------------------------------------------------- /lumen-test/app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/app/Jobs/Job.php -------------------------------------------------------------------------------- /lumen-test/app/Listeners/Listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/app/Listeners/Listener.php -------------------------------------------------------------------------------- /lumen-test/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /lumen-test/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /lumen-test/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/artisan -------------------------------------------------------------------------------- /lumen-test/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/bootstrap/app.php -------------------------------------------------------------------------------- /lumen-test/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/clean.sh -------------------------------------------------------------------------------- /lumen-test/codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/codeception.yml -------------------------------------------------------------------------------- /lumen-test/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/composer.json -------------------------------------------------------------------------------- /lumen-test/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /lumen-test/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lumen-test/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /lumen-test/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/phpunit.xml -------------------------------------------------------------------------------- /lumen-test/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/public/.htaccess -------------------------------------------------------------------------------- /lumen-test/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/public/index.php -------------------------------------------------------------------------------- /lumen-test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/readme.md -------------------------------------------------------------------------------- /lumen-test/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/resources/lang/en/validation.php -------------------------------------------------------------------------------- /lumen-test/resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lumen-test/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webNeat/lumen-generators/HEAD/lumen-test/server.php -------------------------------------------------------------------------------- /lumen-test/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /lumen-test/storage/database.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lumen-test/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /lumen-test/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /lumen-test/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /lumen-test/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /lumen-test/tests/_bootstrap.php: -------------------------------------------------------------------------------- 1 |