-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.6 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
43
{
"name": "bvarent/doc-block-tags",
"description": "A library to read tags from DocBlocks in PHP class files.",
"type" : "library",
"license" : "LGPL-3.0+",
"authors": [
{
"name": "Roel Arents",
"email": "[email protected]"
}
],
"require": {
"phpdocumentor/reflection-docblock": ">=2.0",
"doctrine/common": ">=2.4",
"zendframework/zend-servicemanager": ">=2.2",
"zendframework/zend-modulemanager": ">=2.2",
"zendframework/zend-config": ">=2.2",
"typo3/flow": "^2.2",
"doctrine/migrations": "@dev",
"php": ">=5.3.23"
},
"autoload": {
"psr-4": {
"DocBlockTags\\": "src/",
"DocBlockTags\\Tests\\": "tests/src/"
}
},
"extra": {
"installer-paths": "Typo3 by default installs in /Packages. We want it in /vendor.",
"installer-paths": {
"vendor/typo3/Packages/Framework/{$name}/": ["type:typo3-flow-framework"],
"vendor/typo3/Packages/Application/{$name}/": ["type:typo3-flow-package"],
"vendor/typo3/Packages/Plugins/{$name}/": ["type:typo3-flow-plugin"],
"vendor/typo3/Packages/Sites/{$name}/": ["type:typo3-flow-site"],
"vendor/typo3/Packages/Boilerplates/{$name}/": ["type:typo3-flow-boilerplate"],
"vendor/typo3/Build/{$name}/": ["type:typo3-flow-build"]
}
},
"config": {
"vendor-dir": "Although the config node is only used for projects, this vendor-dir node is to stop Typo3 from complaining.",
"vendor-dir": "vendor"
}
}