forked from nystudio107/craft-seomatic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 2.31 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 2.31 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
{
"name": "nystudio107/craft-seomatic",
"description": "SEOmatic facilitates modern SEO best practices & implementation for Craft CMS 3. It is a turnkey SEO system that is comprehensive, powerful, and flexible.",
"type": "craft-plugin",
"version": "3.2.21",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"seomatic",
"seo",
"json-ld",
"meta",
"tags",
"sitemap",
"twitter",
"facebook"
],
"support": {
"docs": "https://nystudio107.com/plugins/seomatic/documentation",
"issues": "https://nystudio107.com/plugins/seomatic/support"
},
"license": "proprietary",
"authors": [
{
"name": "nystudio107",
"homepage": "https://nystudio107.com"
}
],
"require": {
"craftcms/cms": "^3.0.20",
"php-science/textrank": "^1.0.3",
"davechild/textstatistics": "1.0.2",
"sunra/php-simple-html-dom-parser": "^1.5.2"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"nystudio107\\seomatic\\": "src/"
}
},
"extra": {
"name": "SEOmatic",
"handle": "seomatic",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-seomatic/v3/CHANGELOG.md",
"class": "nystudio107\\seomatic\\Seomatic",
"components": {
"frontendTemplates": "nystudio107\\seomatic\\services\\FrontendTemplates",
"helper": "nystudio107\\seomatic\\services\\Helper",
"jsonLd": "nystudio107\\seomatic\\services\\JsonLd",
"link": "nystudio107\\seomatic\\services\\Link",
"metaBundles": "nystudio107\\seomatic\\services\\MetaBundles",
"metaContainers": "nystudio107\\seomatic\\services\\MetaContainers",
"seoElements": "nystudio107\\seomatic\\services\\SeoElements",
"script": "nystudio107\\seomatic\\services\\Script",
"sitemaps": "nystudio107\\seomatic\\services\\Sitemaps",
"tag": "nystudio107\\seomatic\\services\\Tag",
"title": "nystudio107\\seomatic\\services\\Title"
}
}
}