-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 903 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"$schema": "https://getcomposer.org/schema.json",
"name": "reflective/reflection",
"description": "Reflective is a formally defined reflection mechanism in PHP, which is used to query detailed information about classes, methods, properties, functions, etc.",
"keywords": [
"reflection",
"reflective",
"reflector"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/dependencies-packagist/reflective-reflection",
"authors": [
{
"name": "jundayw",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0"
},
"autoload": {
"psr-4": {
"Reflective\\Reflection\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}