-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.19 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.19 KB
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
38
39
40
41
42
43
44
{
"name": "open-solid/cqs-bundle",
"description": "Symfony integration for Command Query Separation pattern",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Yonel Ceruto",
"email": "open@yceruto.dev"
}
],
"require": {
"php": ">=8.2",
"open-solid/cqs": "^1.0",
"symfony/framework-bundle": "^7.1"
},
"require-dev": {
"doctrine/orm": "^3.0",
"doctrine/doctrine-bundle": "^2.12",
"friendsofphp/php-cs-fixer": "^3.54",
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-latest",
"symfony/messenger": "^7.1",
"symfony/browser-kit": "^7.1",
"symfony/yaml": "^7.1",
"symfony/var-exporter": "^7.4",
"yceruto/decorator": "^1.2",
"open-solid/domain-event": "dev-main"
},
"autoload": {
"psr-4": {
"OpenSolid\\CqsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenSolid\\Tests\\CqsBundle\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"cs": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
}
}