mirror of
https://github.com/filp/whoops.git
synced 2026-09-11 02:06:20 +00:00
3bf469434e
Remove integration with Silex 1, fix #101
39 lines
925 B
JSON
39 lines
925 B
JSON
{
|
|
"name": "filp/whoops",
|
|
"license": "MIT",
|
|
"description": "php error handling for cool kids",
|
|
"keywords": ["library", "error", "handling", "exception", "whoops", "zf2"],
|
|
"homepage": "https://github.com/filp/whoops",
|
|
"authors": [
|
|
{
|
|
"name": "Filipe Dobreira",
|
|
"homepage": "https://github.com/filp",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3.3",
|
|
"phpunit/phpunit": "^4.8"
|
|
},
|
|
"require-dev": {
|
|
"mockery/mockery": "0.9.*"
|
|
},
|
|
"suggest": {
|
|
"symfony/var-dumper": "^2.6",
|
|
"whoops/soap": "Formats errors as SOAP responses"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Whoops\\": "src/Whoops/"
|
|
},
|
|
"files": [
|
|
"src/Whoops/functions.php"
|
|
]
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.0-dev"
|
|
}
|
|
}
|
|
}
|