-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.02 KB
/
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
35
36
37
38
39
40
41
42
{
"name": "scaleupstack/metadata",
"description": "Metadata analysis of PHP classes. Can be extended for your needs by feature analyzers. Based on jms/metadata.",
"type": "library",
"keywords": [
"metadata",
"class",
"property",
"method",
"annotations",
"reflection",
"virtual methods",
"union type"
],
"autoload": {
"psr-4": {
"ScaleUpStack\\Metadata\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ScaleUpStack\\Metadata\\Tests\\": ["tests/"]
}
},
"license": "BSD-3-Clause",
"authors": [
{
"name": "Thomas Nunninger",
"email": "thomas.nunninger@scaleupventures.com"
}
],
"require": {
"php": ">=7.2.0",
"scaleupstack/assert": "^1.",
"scaleupstack/reflection": "^1.",
"jms/metadata": "^2.0",
"scaleupstack/annotations": "^1."
},
"require-dev": {
"phpunit/phpunit": "^7."
}
}