forked from clickstorm/cs_seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.15 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
{
"name": "clickstorm/cs-seo",
"type": "typo3-cms-extension",
"description": "[clickstorm] SEO - Extension for TYPO3. Enables important onpage features for search engine optimization (SEO). Expands the page settings and any desired records for example with a preview for Google search results (SERP) Structured Data (JSON-LD) and a Focus Keyword. Restrictive hreflang and canonical tags. Modules for metadata of records and alternative texts of images. Further features are shown in the extension manual.",
"keywords": [
"TYPO3",
"extension",
"clickstorm",
"SEO"
],
"homepage": "https://www.clickstorm.de",
"license": [
"GPL-2.0-or-later"
],
"require": {
"ext-dom": "*",
"typo3/cms-core": "^12.2",
"typo3/cms-seo": "^12.2"
},
"require-dev": {
"typo3/testing-framework": "*",
"phpstan/phpstan": "*",
"typo3/coding-standards": "*"
},
"replace": {
"typo3-ter/cs-seo": "self.version",
"clickstorm/cs_seo": "self.version"
},
"autoload": {
"psr-4": {
"Clickstorm\\CsSeo\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Clickstorm\\CsSeo\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"extension-key": "cs_seo"
}
}
}