forked from nystudio107/craft-typogrify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.5 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
{
"name": "nystudio107/craft-typogrify",
"description": "Typogrify prettifies your web typography by preventing ugly quotes and 'widows' and more",
"type": "craft-plugin",
"version": "1.1.18",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"typogrify"
],
"support": {
"docs": "https://nystudio107.com/plugins/typogrify/documentation",
"issues": "https://nystudio107.com/plugins/typogrify/support"
},
"license": "MIT",
"authors": [
{
"name": "nystudio107",
"homepage": "https://nystudio107.com/"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"craftcms/cms": "^3.0.0",
"michelf/php-smartypants": "^1.8",
"mundschenk-at/php-typography": "^6.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"nystudio107\\typogrify\\": "src/"
}
},
"extra": {
"name": "Typogrify",
"handle": "typogrify",
"schemaVersion": "1.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-typogrify/v1/CHANGELOG.md",
"components": {
"typogrify": "nystudio107\\typogrify\\services\\TypogrifyService"
},
"class": "nystudio107\\typogrify\\Typogrify"
}
}