forked from bugsnag/bugsnag-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.2 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
{
"name": "bugsnag/bugsnag",
"type": "library",
"description": "Official Bugsnag notifier for PHP applications.",
"keywords": ["bugsnag", "exceptions", "errors", "logging", "tracking"],
"homepage": "https://github.com/bugsnag/bugsnag-php",
"license": "MIT",
"authors": [{
"name": "James Smith",
"email": "[email protected]",
"homepage": "https://bugsnag.com"
}],
"require": {
"php": ">=5.5",
"composer/ca-bundle": "^1.0",
"guzzlehttp/guzzle": "^5.0|^6.0",
"vlucas/phpdotenv": "^3.0"
},
"require-dev": {
"graham-campbell/testbench-core": "^1.1",
"mockery/mockery": "^0.9.4|~1.1.0",
"mtdowling/burgomaster": "dev-master#72151eddf5f0cf101502b94bf5031f9c53501a04",
"phpunit/phpunit": "^4.8|^5.0",
"php-mock/php-mock-phpunit": "^1.1"
},
"autoload": {
"psr-4" : {
"Bugsnag\\" : "src/"
}
},
"autoload-dev": {
"psr-4" : {
"Bugsnag\\Tests\\" : "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.14-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}