-
-
Notifications
You must be signed in to change notification settings - Fork 203
/
composer.json
148 lines (148 loc) · 4.94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"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",
"frontend",
"theme",
"web"
],
"homepage": "https://www.bootstrap-package.com/",
"license": "MIT",
"authors": [
{
"name": "Benjamin Kott",
"email": "[email protected]",
"homepage": "http://www.bk2k.info/",
"role": "Developer"
}
],
"require": {
"php": ">=8.1.0",
"ext-PDO": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"scssphp/scssphp": "^1.13",
"typo3/cms-backend": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-core": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-extbase": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-extensionmanager": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-fluid": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-frontend": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-install": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-rte-ckeditor": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-seo": "^12.4 || ^13.4 || 13.*.*@dev"
},
"require-dev": {
"b13/container": "^2.3 || dev-task/dev-main",
"bk2k/demo-package": "@dev",
"bk2k/extension-helper": "^2.1",
"friendsofphp/php-cs-fixer": "^3.64",
"friendsoftypo3/phpstan-typo3": "^0.9",
"overtrue/phplint": "^9.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"typo3/cms-belog": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-felogin": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-filelist": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-form": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-indexed-search": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-info": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-lowlevel": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-tstemplate": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/cms-workspaces": "^12.4 || ^13.4 || 13.*.*@dev",
"typo3/testing-framework": "^8.2.3"
},
"config": {
"bin-dir": ".build/bin",
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"branch-alias": {
"dev-master": "15.0.x-dev"
},
"typo3/cms": {
"extension-key": "bootstrap_package",
"web-dir": ".build/public"
}
},
"autoload": {
"psr-4": {
"BK2K\\BootstrapPackage\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"BK2K\\BootstrapPackage\\Tests\\": "Tests"
}
},
"repositories": {
"tests": {
"type": "path",
"url": "Tests/Packages/*"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"[ -d .build/public/_assets ] || mkdir -p .build/public/typo3conf/ext/",
"[ -d .build/public/_assets ] || [ -L .build/public/typo3conf/ext/bootstrap_package ] || ln -snvf ../../../../. .build/public/typo3conf/ext/bootstrap_package"
],
"cgl": [
"php-cs-fixer --diff -v fix"
],
"cgl:ci": [
"php-cs-fixer --diff -v --dry-run fix"
],
"changelog": [
"extension-helper changelog:create"
],
"phpstan": [
"phpstan analyze --configuration Build/phpstan.neon"
],
"phpstan:baseline": [
"phpstan analyze --configuration Build/phpstan.neon --generate-baseline Build/phpstan-baseline.neon"
],
"set-version": [
"extension-helper version:set"
],
"test": [
"@test:php:lint",
"@test:php:unit",
"@test:php:functional"
],
"test:php:functional": [
"phpunit -c Build/phpunit-functional.xml"
],
"test:php:lint": [
"phplint"
],
"test:php:unit": [
"phpunit -c Build/phpunit-unit.xml"
]
},
"support": {
"issues": "https://github.com/benjaminkott/bootstrap_package/issues",
"wiki": "https://github.com/benjaminkott/bootstrap_package/wiki",
"source": "https://github.com/benjaminkott/bootstrap_package",
"docs": "https://docs.typo3.org/p/bk2k/bootstrap-package/main/en-us/"
}
}