-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
65 lines (65 loc) · 1.6 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "pauci/cqrs",
"type": "library",
"description": "CQRS library",
"license": "MIT",
"keywords": [
"pauci",
"cqrs",
"ddd",
"event-sourcing"
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"sort-packages": true
},
"require": {
"php": "^8.1 || ^8.2",
"ext-json": "*",
"psr/clock": "^1.0",
"psr/container": "^1.0 || ^2.0",
"ramsey/uuid": "^4.0"
},
"require-dev": {
"ext-PDO": "*",
"ext-redis": "*",
"doctrine/dbal": "^3.2",
"doctrine/orm": "^2.8",
"guzzlehttp/guzzle": "^7.2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10.1",
"squizlabs/php_codesniffer": "^3.7",
"symfony/cache": "^6.0",
"symfony/serializer": "^6.0"
},
"suggest": {
"ramsey/uuid-doctrine": "Provides the ability to use ramsey/uuid as a Doctrine field type"
},
"autoload": {
"psr-4": {
"CQRS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CQRSTest\\": "tests/"
}
},
"scripts": {
"check": [
"@lint",
"@cs-check",
"@stan",
"@test"
],
"lint": "parallel-lint src tests",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"stan": "phpstan analyse --no-progress",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover clover.xml"
}
}