Skip to content

Commit

Permalink
Add code
Browse files Browse the repository at this point in the history
  • Loading branch information
anhchienhoang committed Oct 28, 2018
1 parent c476902 commit c9f1497
Show file tree
Hide file tree
Showing 25 changed files with 2,240 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea
vendor/
.DS_Store
41 changes: 41 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"description": "Common code for DDD learning projects",
"homepage": "https://github.com/anhchienhoang/ddd-common",
"name": "hac/ddd-common",
"type": "library",
"license": "MIT",
"keywords": [
"ddd",
"domain driven design",
"ddd common",
"ddd shared kernel"
],
"authors": [
{
"name": "Chien Hoang",
"homepage": "https://github.com/anhchienhoang"
}
],
"require": {
"php": "^7.2",
"ramsey/uuid": "^3.8"
},
"require-dev": {
"phpunit/phpunit": "^7.4"
},
"autoload": {
"psr-4": {
"DDDCommon\\": "src/DDDCommon"
}
},
"autoload-dev": {
"psr-4": {
"DDDCommon\\Tests\\": "tests/DDDCommon"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}
Loading

0 comments on commit c9f1497

Please sign in to comment.