forked from marcioAlmada/annotations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 845 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
{
"name": "minime/annotations",
"type": "library",
"description": "The KISS PHP annotations library",
"keywords": ["php", "annotations", "reflection", "metadata", "docblock"],
"license": "MIT",
"authors": [
{
"name": "Márcio Almada",
"email": "marcio3w@gmail.com",
"homepage": "https://github.com/marcioAlmada/"
}
],
"require": {
"php": ">=5.4.0",
"ext-json":"*",
"regex-guard/regex-guard": "~1.0",
"nikic/php-parser" : ">=2.0 <5.0.0"
},
"require-dev": {
"mockery/mockery": "^0.9",
"phpunit/phpunit": ">=4.8 <6.0.0"
},
"autoload": {
"psr-4": { "Minime\\Annotations\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Minime\\Annotations\\Fixtures\\": "test/fixtures/" }
}
}