Last active
August 6, 2021 07:49
-
-
Save brunohulk/91fe9c0e7a936815d06e48f26fc4140e to your computer and use it in GitHub Desktop.
Basic structure for a project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
src/ | |
Domain/ | |
Entity/ | |
ValueObject/ | |
Factory/ | |
Service/ | |
Repository/ | |
Persistence/ | |
Repository/ | |
#AutoLoad in composer.json | |
{ | |
"autoload": { | |
"psr-4": { | |
" CleanPhp\\Invoicer\\": ["src/"] #Namespace -> directory | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment