-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.13 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
{
"name": "shiftonelabs/php-rollbar-extensions",
"description": "Adds extra strategies for PHP Rollbar customization.",
"keywords": ["php", "rollbar"],
"homepage": "https://github.com/shiftonelabs/php-rollbar-extensions",
"license": "MIT",
"authors": [
{
"name": "Patrick Carlo-Hickman",
"email": "patrick@shiftonelabs.com"
}
],
"support": {
"issues": "https://github.com/shiftonelabs/php-rollbar-extensions/issues",
"source": "https://github.com/shiftonelabs/php-rollbar-extensions"
},
"require": {
"php": ">=5.5.0",
"rollbar/rollbar": ">=1.2.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.* || ^5",
"squizlabs/php_codesniffer": "2.*",
"shiftonelabs/codesniffer-standard": "0.*"
},
"autoload": {
"psr-4": {
"ShiftOneLabs\\PhpRollbarExtensions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShiftOneLabs\\PhpRollbarExtensions\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}