├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── app ├── MyApp │ ├── Application │ │ └── API │ │ │ └── Controllers │ │ │ └── ProjectsController.php │ ├── Domain │ │ ├── Entity │ │ │ ├── Project.php │ │ │ └── TeamMember.php │ │ ├── Event │ │ │ └── .gitkeep │ │ └── Service │ │ │ └── .gitkeep │ ├── Infrastructure │ │ └── Repository │ │ │ ├── MetaData │ │ │ ├── MyApp.Domain.Entity.Project.dcm.xml │ │ │ └── MyApp.Domain.Entity.TeamMember.dcm.xml │ │ │ ├── Project.php │ │ │ └── TeamMember.php │ └── MyAppServiceProvider.php ├── commands │ └── .gitkeep ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── local │ │ ├── app.php │ │ └── database.php │ ├── mail.php │ ├── packages │ │ └── .gitkeep │ ├── queue.php │ ├── remote.php │ ├── services.php │ ├── session.php │ ├── testing │ │ ├── cache.php │ │ └── session.php │ ├── view.php │ └── workbench.php ├── database │ ├── migrations │ │ └── .gitkeep │ ├── production.sqlite │ └── seeds │ │ ├── .gitkeep │ │ └── DatabaseSeeder.php ├── filters.php ├── lang │ └── en │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── tests │ ├── ExampleTest.php │ └── TestCase.php ├── artisan ├── bootstrap ├── autoload.php ├── paths.php └── start.php ├── composer.json ├── composer.lock ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── index.php ├── packages │ └── .gitkeep └── robots.txt └── server.php /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | vendor/* -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/README.md -------------------------------------------------------------------------------- /app/MyApp/Application/API/Controllers/ProjectsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/MyApp/Application/API/Controllers/ProjectsController.php -------------------------------------------------------------------------------- /app/MyApp/Domain/Entity/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/MyApp/Domain/Entity/Project.php -------------------------------------------------------------------------------- /app/MyApp/Domain/Entity/TeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/MyApp/Domain/Entity/TeamMember.php -------------------------------------------------------------------------------- /app/MyApp/Domain/Event/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/MyApp/Domain/Service/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/MyApp/Infrastructure/Repository/MetaData/MyApp.Domain.Entity.Project.dcm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/MyApp/Infrastructure/Repository/MetaData/MyApp.Domain.Entity.Project.dcm.xml -------------------------------------------------------------------------------- /app/MyApp/Infrastructure/Repository/MetaData/MyApp.Domain.Entity.TeamMember.dcm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/MyApp/Infrastructure/Repository/MetaData/MyApp.Domain.Entity.TeamMember.dcm.xml -------------------------------------------------------------------------------- /app/MyApp/Infrastructure/Repository/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/MyApp/Infrastructure/Repository/Project.php -------------------------------------------------------------------------------- /app/MyApp/Infrastructure/Repository/TeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/MyApp/Infrastructure/Repository/TeamMember.php -------------------------------------------------------------------------------- /app/MyApp/MyAppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/MyApp/MyAppServiceProvider.php -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/app.php -------------------------------------------------------------------------------- /app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/auth.php -------------------------------------------------------------------------------- /app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/cache.php -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/compile.php -------------------------------------------------------------------------------- /app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/database.php -------------------------------------------------------------------------------- /app/config/local/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/local/app.php -------------------------------------------------------------------------------- /app/config/local/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/local/database.php -------------------------------------------------------------------------------- /app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/mail.php -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/queue.php -------------------------------------------------------------------------------- /app/config/remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/remote.php -------------------------------------------------------------------------------- /app/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/services.php -------------------------------------------------------------------------------- /app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/session.php -------------------------------------------------------------------------------- /app/config/testing/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/testing/cache.php -------------------------------------------------------------------------------- /app/config/testing/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/testing/session.php -------------------------------------------------------------------------------- /app/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/view.php -------------------------------------------------------------------------------- /app/config/workbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/config/workbench.php -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/production.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /app/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/filters.php -------------------------------------------------------------------------------- /app/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/lang/en/pagination.php -------------------------------------------------------------------------------- /app/lang/en/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/lang/en/reminders.php -------------------------------------------------------------------------------- /app/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/lang/en/validation.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/routes.php -------------------------------------------------------------------------------- /app/start/artisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/start/artisan.php -------------------------------------------------------------------------------- /app/start/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glendaviesnz/laravel-ddd/HEAD/app/start/global.php -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 |