Files
faveo/vendor/bugsnag/bugsnag-psr-logger/composer.json
2023-01-08 02:57:47 +05:30

34 lines
904 B
JSON

{
"name": "bugsnag/bugsnag-psr-logger",
"type": "library",
"description": "Official Bugsnag PHP PSR Logger.",
"keywords": ["bugsnag", "exceptions", "errors", "logging", "tracking", "psr"],
"homepage": "https://github.com/bugsnag/bugsnag-psr",
"license": "MIT",
"authors": [{
"name": "James Smith",
"email": "notifiers@bugsnag.com",
"homepage": "https://bugsnag.com"
}],
"require": {
"php": ">=8.0",
"bugsnag/bugsnag": "^3.10",
"psr/log": "^2.0|^3.0"
},
"require-dev": {
"graham-campbell/testbench-core": "^1.1",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^9.4.3"
},
"autoload": {
"psr-4" : {
"Bugsnag\\PsrLogger\\" : "src/"
}
},
"autoload-dev": {
"psr-4" : {
"Bugsnag\\PsrLogger\\Tests\\" : "tests/"
}
}
}