42 lines
929 B
JSON
42 lines
929 B
JSON
|
{
|
||
|
"name": "sebastian/object-reflector",
|
||
|
"description": "Allows reflection of object attributes, including inherited and non-public ones",
|
||
|
"homepage": "https://github.com/sebastianbergmann/object-reflector/",
|
||
|
"license": "BSD-3-Clause",
|
||
|
"authors": [
|
||
|
{
|
||
|
"name": "Sebastian Bergmann",
|
||
|
"email": "sebastian@phpunit.de"
|
||
|
}
|
||
|
],
|
||
|
"prefer-stable": true,
|
||
|
"config": {
|
||
|
"platform": {
|
||
|
"php": "7.3.0"
|
||
|
},
|
||
|
"optimize-autoloader": true,
|
||
|
"sort-packages": true
|
||
|
},
|
||
|
"require": {
|
||
|
"php": ">=7.3"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"phpunit/phpunit": "^9.3"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"classmap": [
|
||
|
"src/"
|
||
|
]
|
||
|
},
|
||
|
"autoload-dev": {
|
||
|
"classmap": [
|
||
|
"tests/_fixture/"
|
||
|
]
|
||
|
},
|
||
|
"extra": {
|
||
|
"branch-alias": {
|
||
|
"dev-master": "2.0-dev"
|
||
|
}
|
||
|
}
|
||
|
}
|