Skip to content

GuljahanG/simple-ddd-structure

Repository files navigation

Simple DDD Structure


├── src
│   ├── App
│   │    ├── Console
│   │    ├── Exceptions
│   │    ├── Http
│   │    ├── BootProviders
│   └────├── BaseApplication.php  // added
│   ├──  Domain
│   │     ├── Models
└── └── Services
          ├── SomeServices


 "autoload": {
        "psr-4": {
            "App\\": "src/App/",
            "Domain\\": "src/Domain/",
            "Services\\": "src/Services/",
            "Database\\Factories\\": "database/factories/",
            "Database\\Seeders\\": "database/seeders/"
        }
    },

bootstrap/app.php


$app = new App\BaseApplication(
    realpath(__DIR__ . '/../')
);


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published