-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 887 Bytes
/
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
{
"name": "cv65kr/messenger",
"description": "CQRS + Event Sourcing for Symfony.",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^7.2",
"symfony/messenger": "^4.4|^5.0",
"symfony/event-dispatcher": "^4.4|^5.0",
"ramsey/uuid": "^3.9",
"ramsey/uuid-doctrine": "^1.6",
"beberlei/assert": "^3.2",
"doctrine/doctrine-bundle": "^1.8|^2.0",
"symfony/framework-bundle": "^5.0"
},
"require-dev": {
"sylius-labs/coding-standard": "^3.1",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Messenger\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Messenger\\": "tests/"
}
},
"scripts": {
"fix": [
"vendor/bin/ecs check --ansi --no-progress-bar src tests --fix"
],
"test": [
"composer validate --strict",
"vendor/bin/phpunit --colors=always"
]
}
}