Skip to content

Instantly share code, notes, and snippets.

@noob1211
Forked from satooshi/DirectoryStructure
Last active August 29, 2015 14:07
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 noob1211/048b6e672fbd792ac8e9 to your computer and use it in GitHub Desktop.
Save noob1211/048b6e672fbd792ac8e9 to your computer and use it in GitHub Desktop.
sf2-ddd
├── app
├── bin
├── build
├── lib
├── src
│   └── __VendorPrefix
│   ├── Application
│   │   └── __DomainNameBundle
│   │   ├── Command
│   │   │   └── __Command.php
│   │   ├── Controller
│   │   │   └── __Controller.php
│   │   ├── DependencyInjection
│   │   │   ├── Configuration.php
│   │   │   ├── __CompilerPass.php
│   │   │   └── __Extension.php
│   │   ├── Form
│   │   │   ├── Extension
│   │   │   │   └── __FormExtension.php
│   │   │   ├── Model
│   │   │   │   └── __FormDataModel.php
│   │   │   └── Type
│   │   │   └── __EntityType.php
│   │   ├── Page
│   │   │   └── __Page.php
│   │   ├── Resources
│   │   │   ├── config
│   │   │   │   ├── routing.yml
│   │   │   │   └── services.yml
│   │   │   ├── translations
│   │   │   └── views
│   │   ├── Tests
│   │   │   ├── Command
│   │   │   │   └── __CommandTestCases
│   │   │   ├── Controller
│   │   │   │   └── __ControllerTestCases
│   │   │   ├── DependencyInjection
│   │   │   │   └── __DependencyInjectionTestCases
│   │   │   ├── Form
│   │   │   │   └── __FormTestCases
│   │   │   └── Page
│   │   │   └── __PageTestCases
│   │   └── __DomainNameAppBundle.php
│   ├── Component
│   ├── Domain
│   │   ├── Shared
│   │   │   └── Value
│   │   │   ├── Gender.php
│   │   │   └── Interval.php
│   │   └── __DomainNameBundle
│   │   ├── Application
│   │   │   └── __ApplicationService.php
│   │   ├── Entity
│   │   │   ├── Model
│   │   │   │   └── __EntityDataModel.php
│   │   │   └── __EntityExtendsDataModel.php
│   │   ├── Event
│   │   │   └── __DomainEvent.php
│   │   ├── Exception
│   │   │   └── __DomainException.php
│   │   ├── Interface
│   │   │   ├── Dto
│   │   │   │   └── __ServiceDto.php
│   │   │   └── Facade
│   │   │   └── __ServiceFacade.php
│   │   ├── Listener
│   │   │   ├── __DomainEventListener.php
│   │   │   └── __EntityListener.php
│   │   ├── Repository
│   │   │   └── __EntityRepositoryInterface.php
│   │   ├── Resources
│   │   │   └── config
│   │   │   ├── doctrine
│   │   │   │   ├── __Document.mongodb.xml
│   │   │   │   └── __Entity.orm.xml
│   │   │   ├── services.yml
│   │   │   └── validation.yml
│   │   ├── Service
│   │   │   └── __DomainService.php
│   │   ├── Specification
│   │   │   └── __DomainSpecification.php
│   │   ├── Tests
│   │   │   ├── Application
│   │   │   │   └── __ApplicationServiceTestCases
│   │   │   ├── Entity
│   │   │   │   └── __EntityTestCases
│   │   │   ├── Event
│   │   │   │   └── __EventTestCases
│   │   │   ├── Exception
│   │   │   │   └── __ExceptionTestCases
│   │   │   ├── Interface
│   │   │   │   └── __InterfaceTestCases
│   │   │   ├── Listener
│   │   │   │   └── __ListenerTestCaess
│   │   │   ├── Service
│   │   │   │   └── __ServiceTestCases
│   │   │   ├── Specification
│   │   │   │   └── __SpecificationTestCases
│   │   │   └── Validator
│   │   │   └── __ValidatorTestCases
│   │   ├── Validator
│   │   │   └── __DomainValidator.php
│   │   └── __DomainNameBundle.php
│   └── Infrastructure
│   └── __DomainNameBundle
│   ├── Messaging
│   │   ├── __EmailConsumer.php
│   │   └── __LoggingConsumer.php
│   ├── Repository
│   │   ├── __DocumentRepository.php
│   │   └── __EntityRepository.php
│   ├── Tests
│   │   ├── Messaging
│   │   │   └── __MessagingTestCases
│   │   └── Repository
│   │   └── __RepositoryTestCases
│   └── __DomainNameBundle.php
├── tests
│   └── SeleniumTestSuite
├── vendor
└── web
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment