-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.36 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
{
"name": "liquidlight/typo3-call-to-actions",
"description": "Shared Call to Action repository and plugin, to allow display of your CTAs",
"license": "GPL-2.0+",
"type": "typo3-cms-extension",
"version": "2.0.1",
"keywords": [
"TYPO3 CMS",
"CTAs",
"Promos"
],
"readme": "./README.md",
"authors": [
{
"name": "Liquid Light",
"email": "info@liquidlight.co.uk",
"homepage": "https://www.liquidlight.co.uk/"
},
{
"name": "Mike Street",
"email": "mike@liquidlight.co.uk"
}
],
"homepage": "https://github.com/liquidlight/typo3-call-to-actions",
"support": {
"issues": "https://github.com/liquidlight/typo3-call-to-actions/issues",
"source": "https://github.com/liquidlight/typo3-call-to-actions",
"docs": "https://docs.typo3.org/p/liquidlight/typo3-call-to-actions/master/en-us/"
},
"require": {
"typo3/cms-core": "^11.5"
},
"autoload": {
"psr-4": {
"LiquidLight\\CallToActions\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "call_to_actions"
}
},
"scripts": {
"prepare-release": [
"rm -rf .github",
"rm .gitignore",
"rm .project.php_cs"
]
}
}