-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 873 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 873 Bytes
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
{
"name": "bowphp/cqrs",
"description": "Command Query Responsibility Segregation",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Bow\\CQRS\\": "src/",
"Bow\\Tests\\CQRS\\": "tests/"
}
},
"authors": [
{
"name": "Franck DAKIA",
"email": "dakiafranck@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"bowphp/framework": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^10.1@dev",
"squizlabs/php_codesniffer": "4.0.x-dev"
},
"scripts": {
"phpcbf": "phpcbf --standard=psr12 --severity=4 --tab-width=4 src tests",
"phpcs": "phpcs --standard=psr12 --severity=4 --tab-width=4 src",
"test": "phpunit tests --bootstrap=vendor/autoload.php"
}
}