This repository has been archived by the owner on Dec 10, 2021. It is now read-only.
forked from tomasnorre/crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.4 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
44
45
46
47
48
49
50
51
52
{
"name": "aoepeople/crawler",
"description": "Crawler extension for TYPO3",
"homepage": "https://github.com/AOEpeople/crawler",
"support": {
"issues": "https://github.com/AOEpeople/crawler/issues"
},
"autoload": {
"classmap": [
"."
]
},
"license": "GPL-3.0",
"type": "typo3-cms-extension",
"version": "5.0.4",
"authors": [
],
"minimum-stability": "dev",
"require": {
"typo3/cms": ">=6.2.1,<8.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8.0",
"mikey179/vfsStream": "1.3.*@dev"
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/crawler ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/crawler",
"mkdir -p typo3conf/ext",
"[ -L typo3conf/ext/crawler ] || ln -snvf ../../. typo3conf/ext/crawler"
]
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}