forked from getsentry/sentry-symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.83 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
{
"name": "sentry/sentry-symfony",
"type": "symfony-bundle",
"description": "Symfony integration for Sentry (http://getsentry.com)",
"keywords": ["logging", "errors", "symfony", "sentry"],
"homepage": "http://getsentry.com",
"license": "Apache-2.0",
"authors": [
{
"name": "David Cramer",
"email": "[email protected]"
},
{
"name": "Alessandro Lai",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.1",
"jean85/pretty-package-versions": "^1.0",
"sentry/sentry": "^1.9",
"symfony/config": "^3.0||^4.0",
"symfony/console": "^3.3||^4.0",
"symfony/dependency-injection": "^3.0||^4.0",
"symfony/event-dispatcher": "^3.0||^4.0",
"symfony/http-kernel": "^3.0||^4.0",
"symfony/security-core": "^3.0||^4.0",
"symfony/yaml": "^3.0||^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.8",
"phpstan/phpstan": "^0.10",
"phpstan/phpstan-phpunit": "^0.10",
"phpunit/phpunit": "^7",
"scrutinizer/ocular": "^1.4",
"symfony/expression-language": "^3.0||^4.0"
},
"autoload": {
"psr-4" : {
"Sentry\\SentryBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4" : {
"Sentry\\SentryBundle\\Test\\": "test"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse src test --level 7 -c phpstan.neon",
"cs-check": "vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix --verbose --diff"
},
"extra": {
"branch-alias": {
"master": "2.1.x-dev",
"releases/1.x": "1.1.x-dev"
}
}
}