This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
generated from narrowspark/php-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
84 lines (84 loc) · 2.93 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "narrowspark/exception-inspector",
"type": "library",
"description": "Inspector for exception stack trace.",
"keywords": [
"narrowspark",
"exception",
"trace"
],
"homepage": "http://github.com/narrowspark/exception-inspector",
"license": "MIT",
"authors": [
{
"name": "Daniel Bannert",
"email": "[email protected]",
"homepage": "http://www.anolilab.de",
"role": "Developer"
}
],
"require": {
"php": "^7.3",
"thecodingmachine/safe": "^1.1.0"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^9.1.4"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"prefetcher": {
"require": {
"phpunit/phpunit": "^9.0"
}
}
},
"autoload": {
"psr-4": {
"Narrowspark\\ExceptionInspector\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Narrowspark\\ExceptionInspector\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": "composer --working-dir=./.build install --lock",
"post-update-cmd": "composer --working-dir=./.build update --lock",
"changelog": "composer --working-dir=./.build changelog",
"coverage": [
"phpunit --dump-xdebug-filter=./.build/phpunit/.xdebug-filter.php",
"phpunit --prepend=./.build/phpunit/.xdebug-filter.php --coverage-html=./.build/phpunit/coverage"
],
"cs": "composer --working-dir=./.build cs -- -v",
"cs:check": "composer --working-dir=./.build cs:check -- -v",
"infection": "composer --working-dir=./.build infection -- --min-covered-msi=73 --min-msi=61",
"phpstan": "composer --working-dir=./.build phpstan -- --memory-limit=-1",
"phpstan:baseline": "composer --working-dir=./.build phpstan:baseline -- --memory-limit=-1",
"psalm": "composer --working-dir=./.build psalm",
"psalm:fix": "composer --working-dir=./.build psalm:fix",
"psalm:baseline": "composer --working-dir=./.build psalm:baseline",
"rector-src": "composer --working-dir=./.build rector-src",
"rector-src:fix": "composer --working-dir=./.build rector-src:fix",
"rector-tests": "composer --working-dir=./.build rector-tests",
"rector-tests:fix": "composer --working-dir=./.build rector-tests:fix",
"req:check": "composer --working-dir=./.build req:check",
"test": "phpunit"
},
"support": {
"issues": "https://github.com/narrowspark/exception-inspector/issues",
"source": "https://github.com/narrowspark/exception-inspector"
}
}