-
-
Notifications
You must be signed in to change notification settings - Fork 452
/
composer.json
81 lines (81 loc) · 2.12 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
{
"name": "sentry/sentry",
"type": "library",
"description": "PHP SDK for Sentry (http://sentry.io)",
"keywords": [
"sentry",
"log",
"logging",
"error-monitoring",
"error-handler",
"crash-reporting",
"crash-reports",
"profiling",
"tracing"
],
"homepage": "http://sentry.io",
"license": "MIT",
"authors": [
{
"name": "Sentry",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"ext-mbstring": "*",
"ext-curl": "*",
"guzzlehttp/psr7": "^1.8.4|^2.1.1",
"jean85/pretty-package-versions": "^1.5|^2.0.4",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/options-resolver": "^4.4.30|^5.0.11|^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"guzzlehttp/promises": "^2.0.3",
"guzzlehttp/psr7": "^1.8.4|^2.1.1",
"monolog/monolog": "^1.6|^2.0|^3.0",
"phpbench/phpbench": "^1.0",
"phpstan/phpstan": "^1.3",
"phpunit/phpunit": "^8.5|^9.6",
"symfony/phpunit-bridge": "^5.2|^6.0|^7.0",
"vimeo/psalm": "^4.17"
},
"suggest": {
"monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
},
"conflict": {
"raven/raven": "*"
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"Sentry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sentry\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@phpstan",
"@psalm",
"@tests"
],
"tests": "vendor/bin/phpunit --verbose",
"cs-check": "vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix --verbose --diff",
"phpstan": "vendor/bin/phpstan analyse",
"psalm": "vendor/bin/psalm"
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}