-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.16 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
38
39
40
41
42
{
"name": "remotelyliving/php-command-bus",
"description": "A php query bus for abstracting querying, data loading, and graph building",
"keywords": ["command bus", "command", "bus", "CQRS"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Thomas",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-filter": "*",
"ext-mbstring": "*",
"psr/log": "^1.0",
"psr/container": "^1.0",
"myclabs/php-enum": "^1.7",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"maglnet/composer-require-checker": "^2.0",
"squizlabs/php_codesniffer": "^3.3",
"php-coveralls/php-coveralls": "^2.2",
"vimeo/psalm": "^3.7",
"phpstan/phpstan": "^0.12.19"
},
"autoload": {
"psr-4": {
"RemotelyLiving\\PHPCommandBus\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"RemotelyLiving\\PHPCommandBus\\Tests\\" : "tests/"
}
}
}