https://github.com/influxow/laravel_ddd_ecommerce
Laravel DDD e-Commerce
https://github.com/influxow/laravel_ddd_ecommerce
laravel php php81
Last synced: about 1 year ago
JSON representation
Laravel DDD e-Commerce
- Host: GitHub
- URL: https://github.com/influxow/laravel_ddd_ecommerce
- Owner: InfluxOW
- Created: 2021-11-05T08:42:55.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-23T14:50:22.000Z (almost 3 years ago)
- Last Synced: 2025-03-23T22:24:02.038Z (about 1 year ago)
- Topics: laravel, php, php81
- Language: PHP
- Homepage:
- Size: 6.35 MB
- Stars: 35
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WIP: [Laravel DDD e-Commerce](http://laravel-ddd-ecommerce.herokuapp.com)
## About
I was looking for such kind of project but found nothing, so I decided to create my own. Maybe there's not a huge
difference between generic Laravel e-Commerce and DDD e-Commerce, but anyway it's interesting to use another
architecture and look how you can modify base project structure.
I was inspired by these ([1](https://lorisleiva.com/conciliating-laravel-and-ddd/)
, [2](https://medium.com/@ibrunotome/a-domain-driven-design-ddd-approach-to-the-laravel-framework-18906b3dd473)
, [3](https://youtu.be/0Rq-yHAwYjQ?list=PLc9FxgUP0PDRFpDM7YLqHTxlSi1Q8ALyB&t=4066)) and a lot of other articles and
videos as well as my work projects. But basically every DDD article presents its own project structure so DDD is more an
idea or a team agreement than exact project structure. And that's why I've implemented my own wierd DDD structure :)
## Development Setup
1. Fill `.env` variables.
2. To setup project in Docker environment ([Laravel Sail](https://laravel.com/docs/10.x/sail)) use `make setup` command.
## Features
### Generic Features
- [Laravel Octane](https://laravel.com/docs/10.x/octane) with Swoole as Server
- [Laravel Horizon](https://laravel.com/docs/10.x/horizon) as Queue Dashboard
- [Totem](https://github.com/codestudiohq/laravel-totem) as Schedule Dashboard
- [Prequel](https://github.com/Protoqol/Prequel) as Database Dashboard
- [Clockwork](https://underground.works/clockwork/) and [Laravel Telescope](https://laravel.com/docs/10.x/telescope) as Dev Toolkit
- [Swagger Documentation](http://laravel-ddd-ecommerce.herokuapp.com/api/documentation)
- Amazing [Admin Panel](http://laravel-ddd-ecommerce.herokuapp.com/admin) - [Filament](https://filamentadmin.com/)
- RESTful API
- Instant Parallel Tests
- RabbitMQ Queues
- Redis Cache
- Elasticsearch Search
- Sentry Logging
- XDebug Support
### Infrastructural Features
- DDD structure
- Separate [Development](https://github.com/InfluxOW/laravel_ddd_ecommerce/blob/master/docker-compose.yml), [Testing](https://github.com/InfluxOW/laravel_ddd_ecommerce/blob/master/docker-compose.test.yml) and [CI](https://github.com/InfluxOW/laravel_ddd_ecommerce/blob/master/docker-compose.ci.yml) Infrastructure
- Git Hooks with Code Style ([PHPCS](https://github.com/squizlabs/PHP_CodeSniffer), [Laravel Pint](https://github.com/laravel/pint)) and Code Quality ([PHPStan](https://github.com/phpstan/phpstan)) analysis
- Fast CI at GitHub Actions:
- caching dependencies and check's results
- building, caching and pushing Docker images to the Docker Hub
- building [code coverage report](https://about.codecov.io/)
### Project Features
- Authentication with [Laravel Sanctum](https://github.com/laravel/sanctum), Email Verification, Login History - [[**Users**](https://github.com/InfluxOW/laravel_ddd_ecommerce/tree/master/app/Domains/Users)]
- Catalog with different filters, full-text search, categories tree, etc. - [[**Catalog**](https://github.com/InfluxOW/laravel_ddd_ecommerce/tree/master/app/Domains/Catalog)]
- Ability to add feedback, but a limited number of times per hour per IP - [[**Feedback**](https://github.com/InfluxOW/laravel_ddd_ecommerce/tree/master/app/Domains/Feedback)]
- **[WIP]** Carts with Redis - [[**Cart**](https://github.com/InfluxOW/laravel_ddd_ecommerce/tree/master/app/Domains/Cart)]
- [[**News**](https://github.com/InfluxOW/laravel_ddd_ecommerce/tree/master/app/Domains/News)]
### Random Features
- Full usage of PHP 8.1 + PHP 8.2 features
- Admin panel multilanguage support
- AWS S3 disk for images, responsive images generation
And a lot of other that isn't mentioned above, or will be added, or will be fixed in current code.