-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.37 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
{
"name": "belniakmedia/remarry-twig-filter",
"description": "A CraftCMS Twig Filter that prevents paragraph text widows in plain text and complex HTML user supplied content.",
"type": "craft-plugin",
"version": "2.1.1",
"license": "MIT",
"keywords": ["craft", "cms", "craftcms", "craft-plugin", "widow", "orphan", "remarry twig filter"],
"authors": [
{
"name": "Rick Kukiela of Belniak Media Inc.",
"homepage": "https://www.belniakmedia.com"
}
],
"support": {
"email": "rick@belniakmedia.com",
"issues": "https://github.com/BelniakMedia/RemarryFilter/issues",
"source": "https://github.com/BelniakMedia/RemarryFilter",
"docs": "https://github.com/BelniakMedia/RemarryFilter/blob/master/README.md"
},
"require": {
"php": ">=8.0.2",
"craftcms/cms": "^4.0.0",
"ext-dom": "*",
"ext-mbstring": "*",
"ext-libxml": "*"
},
"autoload": {
"psr-4": {
"belniakmedia\\remarrytwigfilter\\": "src/"
}
},
"extra": {
"name": "remarry Twig Filter",
"handle": "remarry-twig-filter",
"class": "belniakmedia\\remarrytwigfilter\\RemarryTwigFilter"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}