-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.34 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 2.34 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
74
{
"name": "phphd/exception-toolkit",
"description": "Exception processing toolkit",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Yevhen Sidelnyk",
"email": "zsidelnik@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1"
},
"conflict": {
"symfony/http-kernel": "<6.0 || >8.4",
"symfony/dependency-injection": "<6.2 || >8.4" ,
"symfony/messenger": ">8.4",
"symfony/deprecation-contracts": "<2.5",
"amphp/amp": ">=4.0"
},
"require-dev": {
"symfony/http-kernel": ">=6.0",
"symfony/dependency-injection": ">=6.2",
"symfony/messenger": ">=6.4",
"amphp/amp": ">=3.0.2",
"symfony/var-dumper": ">=6.0",
"phphd/coding-standard": "~0.6.2",
"phpstan/phpstan": "^2.1.32",
"phpstan/phpstan-phpunit": "^2.0.8",
"phpstan/phpstan-strict-rules": "^2.0.7",
"tomasvotruba/type-coverage": "^2.0.2",
"phpunit/phpunit": "^10.5.30",
"nyholm/symfony-bundle-test": "^3.0"
},
"suggest": {
"symfony/messenger": "There's an unwrapper for Messenger exceptions of ^6.4 or above",
"amphp/amp": "There's an unwrapper for Amp exceptions of ^3.0 or above"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/phphd/coding-standard"
}
],
"autoload": {
"psr-4": {
"PhPhD\\ExceptionToolkit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhPhD\\ExceptionToolkit\\Tests\\": "tests/"
}
},
"scripts": {
"ci:pack": [
"@ci:ecs",
"@ci:rector",
"@ci:phpstan",
"@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",
"ci:rector-fix": "vendor/bin/rector process",
"ci:phpstan": "vendor/bin/phpstan analyze",
"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"
}
}