Files
whoops/composer.json
T
Denis Sokolov 3bf469434e Merge pull request #327 from filp/remove-silex-1
Remove integration with Silex 1, fix #101
2015-12-13 01:10:55 +02:00

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"
}
}
}