-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 973 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 973 Bytes
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
{
"name": "thinframe/annotations",
"type": "library",
"homepage": "http://thinframe.net",
"description": "Annotations metadata for PHP classes",
"keywords": ["thinframe", "annotations", "metadata"],
"license": "MIT",
"support": {
"issues": "https://github.com/thinframe/annotations/issues"
},
"authors": [
{
"name": "Sorin Badea",
"email": "sorin.badea91@gmail.com",
"homepage": "http://sorinbadea.me",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"thinframe/foundation": "@stable",
"thinframe/applications": "@stable"
},
"require-dev": {
"phpunit/phpunit": "@stable"
},
"autoload": {
"psr-4": {
"ThinFrame\\Annotations\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
}
}