forked from benjaminkott/bootstrap_package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 1.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "bk2k/bootstrap-package",
"type": "typo3-cms-extension",
"description": "Bootstrap Package delivers a full configured frontend theme for TYPO3, based on the Bootstrap CSS Framework.",
"keywords": [
"TYPO3 CMS",
"introduction",
"sitepackage",
"bootstrap",
"responsive",
"front-end",
"web"
],
"homepage": "https://github.com/benjaminkott/bootstrap_package",
"authors": [
{
"name": "Benjamin Kott",
"email": "[email protected]",
"role": "Developer",
"homepage": "http://www.bk2k.info/"
}
],
"license": "MIT",
"support": {
"issues": "https://github.com/benjaminkott/bootstrap_package/issues"
},
"require": {
"typo3/cms-core": "^7.6.0 || ^8.0",
"typo3/cms": "^7.6.0 || ^8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*",
"namelesscoder/typo3-repository-client": "^1.2",
"mikey179/vfsStream": "1.4.*@dev",
"phpunit/phpunit": "~4.7.0"
},
"autoload": {
"psr-4": {
"BK2K\\BootstrapPackage\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\Core\\Tests\\": ".build/vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": ".build/vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
},
"replace": {
"bootstrap_package": "self.version",
"typo3-ter/bootstrap-package": "self.version"
},
"config": {
"process-timeout": 2000,
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/",
"[ -L .build/web/typo3conf/ext/bootstrap_package ] || ln -snvf ../../../../. .build/web/typo3conf/ext/bootstrap_package"
]
},
"extra": {
"branch-alias": {
"dev-master": "7.1.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".build/web"
}
}
}