forked from TopShelfCraft/Wordsmith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.71 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
{
"name": "topshelfcraft/wordsmith",
"description": "...because you have the best words.",
"type": "craft-plugin",
"version": "3.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"wordsmith"
],
"support": {
"docs": "https://wordsmith.docs.topshelfcraft.com/",
"issues": "https://github.com/topshelfcraft/wordsmith/issues"
},
"license": "MIT",
"authors": [
{
"name": "Michael Rog",
"homepage": "https://topshelfcraft.com"
}
],
"require": {
"danielstjules/stringy": "~3.1.0",
"mofodojodino/profanity-filter": "^1.3",
"tcb13/substringy": "^1.0",
"davechild/textstatistics": "^1.0",
"icanboogie/inflector": "^1.4",
"erusev/parsedown-extra": "^0.7.1",
"mundschenk-at/php-typography": "^6.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"topshelfcraft\\wordsmith\\": "src/"
}
},
"extra": {
"name": "Wordsmith",
"handle": "wordsmith",
"schemaVersion": "0.0.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/topshelfcraft/wordsmith/master/CHANGELOG.md",
"components": {
"emoji": "topshelfcraft\\wordsmith\\services\\EmojiService",
"smith": "topshelfcraft\\wordsmith\\services\\WordsmithService",
"typography": "topshelfcraft\\wordsmith\\services\\TypographyService"
},
"class": "topshelfcraft\\wordsmith\\Wordsmith"
}
}