-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 1.05 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "geekcell/ddd",
"description": "Your ultimate guard rails for domain driven design with PHP.",
"type": "library",
"license": "MIT",
"version": "1.6.0",
"autoload": {
"psr-4": {
"GeekCell\\Ddd\\": "src/",
"GeekCell\\Ddd\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Pascal Cremer",
"email": "pascal.cremer@geekcell.io"
}
],
"require": {
"php": ">=8.1",
"psr/event-dispatcher": "^1.0",
"beberlei/assert": "^3.3",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.13",
"mockery/mockery": "^1.5",
"phpstan/phpstan-mockery": "^1.1",
"larapack/dd": "^1.1"
},
"scripts": {
"gc:tests": "phpunit --testdox --colors=always",
"gc:cs-lint": "php-cs-fixer fix --config .php-cs-fixer.php --diff -vvv --dry-run",
"gc:cs-fix": "php-cs-fixer fix --config .php-cs-fixer.php -vvv || true"
}
}