forked from pauci/cqrs-factory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.36 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
{
"name": "pauci/cqrs-factory",
"description": "CQRS factories for PSR-11",
"version": "0.7.0",
"type": "library",
"license": "MIT",
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Sygic/cqrs"
}
],
"require": {
"php": "^8.3 || ^8.4",
"pauci/cqrs": "dev-master",
"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",
"rector/rector": "^1.2",
"squizlabs/php_codesniffer": "^3.7",
"symfony/serializer": "^6.0"
},
"autoload": {
"psr-4": {
"CQRSFactory\\": "src/"
}
},
"scripts": {
"check": [
"@lint",
"@cs-check",
"@rector",
"@stan"
],
"lint": "parallel-lint src",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"rector": "rector -n -vv",
"rector:clear": "rector -n --clear-cache -vv",
"rector:fix": "rector -vv",
"stan": "phpstan analyse --no-progress",
"test": "phpunit"
}
}