-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
122 lines (122 loc) · 3.98 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
{
"name": "sci/sci-api",
"type": "typo3-cms-extension",
"description": "",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Structured Content Initiative"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"typo3/cms-core": "^10.4.0 || dev-master"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.3",
"friendsofphp/php-cs-fixer": "^2.14",
"helhum/typo3-console": "^6.3",
"roave/security-advisories": "dev-master",
"typo3/cms-about": "^10.4",
"typo3/cms-adminpanel": "^10.4",
"typo3/cms-backend": "^10.4",
"typo3/cms-belog": "^10.4",
"typo3/cms-beuser": "^10.4",
"typo3/cms-dashboard": "^10.4",
"typo3/cms-extbase": "^10.4",
"typo3/cms-extensionmanager": "^10.4",
"typo3/cms-felogin": "^10.4",
"typo3/cms-filelist": "^10.4",
"typo3/cms-filemetadata": "^10.4",
"typo3/cms-fluid": "^10.4",
"typo3/cms-fluid-styled-content": "^10.4",
"typo3/cms-form": "^10.4",
"typo3/cms-frontend": "^10.4",
"typo3/cms-impexp": "^10.4",
"typo3/cms-indexed-search": "^10.4",
"typo3/cms-info": "^10.4",
"typo3/cms-install": "^10.4",
"typo3/cms-linkvalidator": "^10.4",
"typo3/cms-lowlevel": "^10.4",
"typo3/cms-opendocs": "^10.4",
"typo3/cms-recordlist": "^10.4",
"typo3/cms-recycler": "^10.4",
"typo3/cms-redirects": "^10.4",
"typo3/cms-reports": "^10.4",
"typo3/cms-rte-ckeditor": "^10.4",
"typo3/cms-scheduler": "^10.4",
"typo3/cms-seo": "^10.4",
"typo3/cms-setup": "^10.4",
"typo3/cms-sys-note": "^10.4",
"typo3/cms-t3editor": "^10.4",
"typo3/cms-tstemplate": "^10.4",
"typo3/cms-viewpage": "^10.4",
"typo3/cms-workspaces": "^10.4",
"typo3/testing-framework": "^6.2"
},
"config": {
"bin-dir": ".typo3/bin",
"sort-packages": true,
"vendor-dir": ".typo3/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "sci_api",
"web-dir": ".typo3/public",
"app-dir": ".typo3"
}
},
"autoload": {
"psr-4": {
"Sci\\SciApi\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sci\\SciApi\\Tests\\": "Tests/"
}
},
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"[ -L .typo3/public/typo3conf/ext/sci_api ] || ln -snvf ../../../../. .typo3/public/typo3conf/ext/sci_api"
],
"fix:cgl": [
"php-cs-fixer --config=.php_cs.dist fix --using-cache=no",
"composer normalize --no-update-lock"
],
"install-cbs": [
"[ -d .typo3/public/typo3conf/contentBlocks ] || mkdir -p .typo3/public/typo3conf/contentBlocks",
"for cb in Build/contentBlocks/*; do ln -snvf \"../../../../$cb\" .typo3/public/typo3conf/contentBlocks/; done"
],
"install-extensions": [
"typo3 extension:activate -n sci_api",
"typo3cms database:updateschema"
],
"install-typo3": [
"typo3cms install:setup --admin-user-name=admin --admin-password=adminadmin --no-interaction",
"typo3cms install:generatepackagestates"
],
"test": [
"@test:cgl",
"@test:unit"
],
"test:cgl": [
"php-cs-fixer --config=.php_cs.dist fix -v --using-cache=no --dry-run",
"composer normalize --no-update-lock --dry-run"
],
"test:unit": [
"phpunit -c Tests/UnitTests.phpunit.xml"
],
"typo3:flush": [
"typo3cms cache:flush"
]
},
"support": {
"issues": "https://github.com/TYPO3-Initiatives/content-block-registration-api/issues",
"source": "https://github.com/TYPO3-Initiatives/content-block-registration-api"
}
}