-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.25 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
{
"name": "clearbold/fixmealink",
"description": "Fix Me a Link is a Craft plugin with link utility functions.",
"version": "1.0.1",
"type": "craft-plugin",
"homepage": "https://github.com/clearbold/fixmealink",
"license": "MIT",
"authors": [
{
"name": "Mark Reeves",
"homepage": "http://clearbold.com"
}
],
"keywords": [
"craft",
"cms",
"craftcms",
"twig",
"obfuscate",
"url"
],
"require": {
"craftcms/cms": "^3.0.1"
},
"autoload": {
"psr-4": {
"clearbold\\fixmealink\\": "src/"
}
},
"support": {
"docs": "https://github.com/clearbold/fixmealink",
"source": "https://github.com/clearbold/fixmealink",
"issues": "https://github.com/clearbold/fixmealink"
},
"extra": {
"name": "Fix Me a Link",
"handle": "fixmealink",
"hasCpSettings": false,
"developer": "Clearbold",
"developerUrl": "http://clearbold.com/",
"changelogUrl": "https://raw.githubusercontent.com/clearbold/fixmealink/master/CHANGELOG.md",
"class": "clearbold\\fixmealink\\Fixmealink"
},
"minimum-stability": "dev",
"prefer-stable": true
}