-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.25 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.25 KB
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
66
67
68
69
70
71
72
73
{
"name": "phphd/exception-handler",
"description": "Message Bus Exception Handler",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Yevhen Sidelnyk",
"email": "zsidelnik@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"symfony/messenger": "^6.2 | ^7.0",
"symfony/string": "^6.0 | ^7.0",
"symfony/polyfill-php83": "^1.31"
},
"conflict": {
"symfony/http-kernel": "<6.0 || >=8.0",
"symfony/dependency-injection": "<6.0 || >=8.0",
"symfony/config": "<6.0 || >=8.0"
},
"require-dev": {
"symfony/http-kernel": "*",
"symfony/dependency-injection":"*",
"symfony/config": "*",
"tomasvotruba/type-coverage": "^1.0",
"phpstan/phpstan": "^1.10.60",
"vimeo/psalm": "^5.26.1",
"phpat/phpat": "^0.10.18",
"phpstan/phpstan-phpunit": "^1.4.0",
"psalm/plugin-phpunit": "^0.18.4",
"nyholm/symfony-bundle-test": "^3.0",
"phphd/coding-standard": "~0.5.3",
"phpunit/phpunit": "^10.5.36"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/phphd/coding-standard"
}
],
"autoload": {
"psr-4": {
"PhPhD\\ExceptionHandler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhPhD\\ExceptionHandler\\Bundle\\Tests\\": "tests"
}
},
"scripts": {
"ci:pack": [
"@ci:ecs",
"@ci:rector",
"@ci:phpstan",
"@ci:psalm",
"@ci:unit-test",
"@ci:integration-test"
],
"ci:ecs": "vendor/bin/ecs check",
"ci:ecs-fix": "vendor/bin/ecs check --fix",
"ci:rector": "vendor/bin/rector process --dry-run -vv",
"ci:rector-fix": "vendor/bin/rector process",
"ci:phpstan": "vendor/bin/phpstan analyze",
"ci:psalm": "vendor/bin/psalm",
"ci:test": "vendor/bin/phpunit --testdox --colors=always",
"ci:unit-test": "vendor/bin/phpunit --testdox --colors=always --testsuite=Unit",
"ci:integration-test": "vendor/bin/phpunit --testdox --colors=always --testsuite=Integration"
}
}