forked from getsentry/sentry-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.44 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
{
"name": "sentry/sentry-laravel",
"type": "library",
"description": "Laravel SDK for Sentry (https://sentry.io)",
"keywords": ["sentry", "laravel", "log", "logging", "error-monitoring", "error-handler", "crash-reporting", "crash-reports"],
"homepage": "https://sentry.io",
"license": "Apache-2.0",
"authors": [
{
"name": "Sentry",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
"sentry/sdk": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "7.5.*",
"laravel/framework": "5.8.*",
"orchestra/testbench": "3.8.*",
"friendsofphp/php-cs-fixer": "2.14.*"
},
"autoload": {
"psr-0": {
"Sentry\\Laravel\\": "src/"
}
},
"scripts": {
"tests": [
"vendor/bin/phpunit --verbose"
],
"tests-travis": [
"vendor/bin/phpunit --verbose --configuration phpunit.xml --coverage-clover test/clover.xml"
],
"tests-report": [
"vendor/bin/phpunit --verbose --configuration phpunit.xml --coverage-html test/html-report"
],
"phpcs": [
"vendor/bin/php-cs-fixer fix --config=.php_cs --verbose --diff --dry-run"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"laravel": {
"providers": [
"Sentry\\Laravel\\ServiceProvider"
],
"aliases": {
"Sentry": "Sentry\\Laravel\\Facade"
}
}
}
}