Files
barryvdh_ReflectionDocBlock/composer.json
T
Mike van Riel 090cf6b3ad Added assertion library and downgraded phpunit
PHPUnit 4.4 was the last version without phpspec. phpspec conflicts
with this package because it requires v2 of this component and
this causes a cyclic issue with composer
2015-06-13 18:30:22 +02:00

33 lines
781 B
JSON

{
"name": "phpdocumentor/reflection-docblock",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mike van Riel",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"phpdocumentor/reflection-common": "^0.1",
"phpdocumentor/type-resolver": "^0.1.1",
"webmozart/assert": "^1.0"
},
"autoload": {
"psr-4": {"phpDocumentor\\Reflection\\": ["src/"]}
},
"autoload-dev": {
"psr-4": {"phpDocumentor\\Reflection\\": ["tests/unit"]}
},
"require-dev": {
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "4.4"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}