mirror of
https://github.com/filp/whoops.git
synced 2026-09-04 14:37:28 +00:00
a6b032c091
As per http://getcomposer.org/doc/02-libraries.md#specifying-the-version, it is recommended to not put explicit version in the composer.json file. Main advantage of that is that bumping a library version is as easy as adding a tag, which is significantly different from editing a file and creating a new commit with meaningless commit message.
27 lines
657 B
JSON
27 lines
657 B
JSON
{
|
|
"name": "filp/whoops",
|
|
"license": "MIT",
|
|
"description": "php error handling for cool kids",
|
|
"keywords": ["library", "error", "handling", "exception", "silex-provider", "whoops", "zf2"],
|
|
"homepage": "https://github.com/filp/whoops",
|
|
"authors": [
|
|
{
|
|
"name": "Filipe Dobreira",
|
|
"homepage": "https://github.com/filp",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3.0"
|
|
},
|
|
"require-dev": {
|
|
"mockery/mockery": "dev-master",
|
|
"silex/silex": "1.0.*@dev"
|
|
},
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Whoops": "src/"
|
|
}
|
|
}
|
|
}
|