forked from pauci/cqrs-factory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.03 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": "pauci/cqrs-factory",
"description": "CQRS factories for PSR-11",
"type": "library",
"license": "MIT",
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"require": {
"php": "^8.0 || ^8.1 || ^8.2",
"pauci/cqrs": "^0.7.0",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"doctrine/orm": "^2.8",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7",
"symfony/serializer": "^6.0"
},
"autoload": {
"psr-4": {
"CQRSFactory\\": "src/"
}
},
"scripts": {
"check": [
"@lint",
"@cs-check",
"@stan"
],
"lint": "parallel-lint src",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"stan": "phpstan analyse --no-progress",
"test": "phpunit"
}
}