-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2 KB
/
Copy pathcomposer.json
File metadata and controls
77 lines (77 loc) · 2 KB
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
{
"name": "typo3-incubator/theme-fcbigfoot",
"description": "FC Bigfoot Football Club Theme",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "The TYPO3 Community",
"role": "Contributor",
"homepage": "https://typo3.org/community/"
}
],
"require": {
"php": ">=8.3.0",
"typo3/cms-backend": "^13.4",
"typo3/cms-core": "^13.4",
"typo3/cms-filelist": "^13.4",
"typo3/cms-form": "^13.4",
"typo3/cms-frontend": "^13.4",
"typo3/cms-indexed-search": "^13.4",
"typo3/cms-rte-ckeditor": "^13.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.75",
"typo3/cms-belog": "^13.4",
"typo3/cms-impexp": "^13.4",
"typo3/cms-info": "^13.4",
"typo3/cms-install": "^13.4",
"typo3/cms-lowlevel": "^13.4",
"typo3/cms-tstemplate": "^13.4"
},
"autoload": {
"psr-4": {
"TYPO3Incubator\\ThemeFCBigfoot\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".build/bin",
"sort-packages": true,
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "fcbigfoot",
"web-dir": ".build/public"
},
"branch-alias": {
"dev-main": "0.0.x-dev"
}
},
"scripts": {
"cgl": [
"php-cs-fixer --diff -v fix"
],
"npm-install": [
"npm install"
],
"watch-assets": [
"gulp watch"
],
"compile-css": [
"gulp scssTask"
],
"compile-js": [
"gulp jsTask"
],
"compile-assets": [
"composer compile-css",
"composer compile-js"
],
"post-install-cmd": "@npm-install"
}
}