Skip to content
This repository was archived by the owner on Oct 28, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.idea
/.phpunit.cache/
/vendor/
.php-cs-fixer.cache
.phpunit.result.cache
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DDD - Domain Driven Design with PHP

[![Unit tests workflow status](https://github.com/geekcell/php-ddd/actions/workflows/tests.yml/badge.svg)](https://github.com/geekcell/php-ddd/actions/workflows/tests.yml) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=geekcell_php-ddd&metric=coverage)](https://sonarcloud.io/summary/new_code?id=geekcell_php-ddd) [![Bugs](https://sonarcloud.io/api/project_badges/measure?project=geekcell_php-ddd&metric=bugs)](https://sonarcloud.io/summary/new_code?id=geekcell_php-ddd) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=geekcell_php-ddd&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=geekcell_php-ddd) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=geekcell_php-ddd&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=geekcell_php-ddd)
[![Unit tests workflow status](https://github.com/geekcell/php-ddd/actions/workflows/tests.yml/badge.svg)](https://github.com/geekcell/php-ddd/actions/workflows/tests.yml)

Your ultimate guard rails for domain driven design with PHP.

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Your ultimate guard rails for domain driven design with PHP.",
"type": "library",
"license": "MIT",
"version": "1.6.0",
"version": "1.6.1",
"autoload": {
"psr-4": {
"GeekCell\\Ddd\\": "src/",
Expand All @@ -18,15 +18,15 @@
],
"require": {
"php": ">=8.1",
"psr/event-dispatcher": "^1.0",
"beberlei/assert": "^3.3",
"ramsey/uuid": "^4.7"
"psr/event-dispatcher": "^1.0.0",
"beberlei/assert": "^v3.3.3",
"ramsey/uuid": "^4.9.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpunit/phpunit": "^12.4.1",
"friendsofphp/php-cs-fixer": "^3.13",
"mockery/mockery": "^1.5",
"phpstan/phpstan-mockery": "^1.1",
"mockery/mockery": "^1.6.12",
"phpstan/phpstan-mockery": "^2.0.0",
"larapack/dd": "^1.1"
},
"scripts": {
Expand Down
Loading
Loading