-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
45 lines (45 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
{
"name": "bugsnag/bugsnag-symfony",
"description": "Official Bugsnag notifier for Symfony applications.",
"keywords": ["bugsnag", "exceptions", "errors", "logging", "tracking", "symfony"],
"homepage": "https://github.com/bugsnag/bugsnag-symfony",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "James Smith",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"bugsnag/bugsnag": "^3.29.0",
"symfony/config": "^2.7|^3|^4|^5|^6|^7",
"symfony/console": "^2.7|^3|^4|^5|^6|^7",
"symfony/dependency-injection": "^2.7|^3|^4|^5|^6|^7",
"symfony/http-foundation": "^2.7|^3|^4|^5|^6|^7",
"symfony/http-kernel": "^2.7|^3|^4|^5|^6|^7",
"symfony/security-core": "^2.7|^3|^4|^5|^6|^7"
},
"require-dev": {
"graham-campbell/testbench-core": "^1.1",
"mockery/mockery": "^0.9.4|^1.3.1",
"phpunit/phpunit": "^4.8.36|^7.5.15|^9.3.10"
},
"autoload": {
"psr-4": {
"Bugsnag\\BugsnagBundle\\": ""
},
"files": ["create-configuration-class-alias.php"]
},
"extra": {
"branch-alias": {
"dev-master": "1.6-dev"
}
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}