forked from getsentry/sentry-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.36 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
{
"name": "sentry/sentry",
"type": "library",
"description": "A PHP client for Sentry (http://getsentry.com)",
"keywords": ["log", "logging"],
"homepage": "http://getsentry.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "David Cramer",
"email": "dcramer@gmail.com"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.8.0",
"phpunit/phpunit": "^4.8 || ^5.0",
"monolog/monolog": "*"
},
"require": {
"php": ">=5.2.4",
"ext-curl": "*"
},
"suggest": {
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"monolog/monolog": "Automatically capture Monolog events as breadcrumbs"
},
"conflict": {
"raven/raven": "*"
},
"bin": [
"bin/sentry"
],
"autoload": {
"psr-0" : {
"Raven_" : "lib/"
}
},
"scripts": {
"tests": [
"vendor/bin/phpunit --verbose"
],
"tests-report": [
"vendor/bin/phpunit --verbose --configuration phpunit.xml --coverage-html test/html-report"
],
"phpcs": [
"vendor/bin/php-cs-fixer fix --config-file=.php_cs --verbose --diff --dry-run"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.7.x-dev"
}
}
}