arkanmgerges / multi-tier-architecture
Multi-Tier Architecture core used for building applications
1.7.0
2014-12-05 19:17 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-11-19 03:01:32 UTC
README
This is a multi-tier architecture core used for creating applications, it has a flexible application layers as follows:
- Use case layer: This layer will contain only use cases that will interact with the outside world like frameworks, cli...etc
- Data gateway layer: This layer is responsible of taking the request sent from the use case and return a response, this layer can interact with the data base, calls to api, using memcache ...etc
- Entities are recognized by both layers use case and data gateway, and they do not have any dependencies.