Skip to content

Instantly share code, notes, and snippets.

@koyablue
Last active November 3, 2021 09:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koyablue/fa6910f367e8a5045e6fff4bd54510c4 to your computer and use it in GitHub Desktop.
Save koyablue/fa6910f367e8a5045e6fff4bd54510c4 to your computer and use it in GitHub Desktop.
.
└── projdir
├── app
│ ├── (略)
│ ├── Packages
│ │ ├── AdminPage
│ │ ├── FrontPage
│ │ │ ├── Appointment
│ │ │ ├── Contact
│ │ │ ├── Home
│ │ │ │ ├── Domain
│ │ │ │ │ └── Models
│ │ │ │ ├── Infrastructure
│ │ │ │ │ ├── AppointmentFormQueryService.php
│ │ │ │ │ ├── LanguageQueryService.php
│ │ │ │ │ └── StaffQueryService.php
│ │ │ │ ├── Presentation
│ │ │ │ │ ├── Controllers
│ │ │ │ │ │ ├── HomeController.php
│ │ │ │ │ │ └── LocaleController.php
│ │ │ │ │ ├── Dto
│ │ │ │ │ ├── Middleware
│ │ │ │ │ │ └── SetLocaleMiddleware.php
│ │ │ │ │ └── Requests
│ │ │ │ └── UseCase
│ │ │ │ ├── Dto
│ │ │ │ │ ├── AppointmentFormData.php
│ │ │ │ │ ├── HomeData.php
│ │ │ │ │ ├── LanguageList.php
│ │ │ │ │ └── StaffList.php
│ │ │ │ ├── GetDataForHomeUseCase.php
│ │ │ │ ├── QueryServiceInterface
│ │ │ │ │ ├── AppointmentFormQueryServiceInterface.php
│ │ │ │ │ ├── LanguageQueryServiceInterface.php
│ │ │ │ │ └── StaffQueryServiceInterface.php
│ │ │ │ └── SetLocaleUseCase.php
│ │ │ ├── Shared
│ │ │ │ ├── Domain
│ │ │ │ │ └── Models
│ │ │ │ │ └── Locale.php
│ │ │ │ ├── Infrastructure
│ │ │ │ ├── Presentation
│ │ │ │ │ ├── Dto
│ │ │ │ │ │ └── GetLocaleSessionResponse.php
│ │ │ │ │ ├── LocaleDirective.php
│ │ │ │ │ └── LocaleSession.php
│ │ │ │ └── UseCase
│ │ │ │ └── LocaleSessionInterface.php
│ │ │ └── StaticPages
│ │ │ └── Presentation
│ │ │ └── Controllers
│ │ │ └── StaticPagesController.php
│ │ └── Shared
│ └── Providers
│ └── AppServiceProvider.php
├── config
│ └── app.php
├── resources
│ ├── lang
│ │ ├── en
│ │ ├── ja
│ │ ├── pt
│ │ ├── vi
│ │ └── zh
│ └── views
├── routes
└── (略)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment