-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.25 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.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
{
"name": "sentry/sentry-agent",
"type": "library",
"description": "Sentry Agent for PHP (https://sentry.io)",
"homepage": "https://sentry.io",
"license": "MIT",
"authors": [
{
"name": "Sentry",
"email": "accounts@sentry.io"
}
],
"require": {
"php": "^7.2|^8",
"ext-json": "*",
"sentry/sentry": "^4.19.1"
},
"autoload": {
"psr-4": {
"Sentry\\Agent\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.70",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^8.5|^9.6"
},
"autoload-dev": {
"psr-4": {
"Sentry\\Agent\\Tests\\": "tests/"
}
},
"bin": [
"bin/sentry-agent"
],
"scripts": {
"check": [
"@cs-check",
"@phpstan",
"@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",
"build": "scripts/build.sh"
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}