Files
whoops/composer.json
T
Denis Sokolov a6b032c091 Composer: let version be determined by git tags
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.
2013-10-14 11:56:38 +02:00

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