-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
48 lines (48 loc) · 1.33 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
{
"name": "verbb/tablemaker",
"description": "Create customizable and user-defined table fields.",
"type": "craft-plugin",
"version": "5.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"table maker"
],
"support": {
"email": "support@verbb.io",
"issues": "https://github.com/verbb/tablemaker/issues?state=open",
"source": "https://github.com/verbb/tablemaker",
"docs": "https://github.com/verbb/tablemaker",
"rss": "https://github.com/verbb/tablemaker/commits/v2.atom"
},
"license": "MIT",
"authors": [
{
"name": "Verbb",
"homepage": "https://verbb.io"
},
{
"name": "Supercool Ltd",
"homepage": "http://www.supercooldesign.co.uk/"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"verbb/base": "^3.0.0"
},
"autoload": {
"psr-4": {
"verbb\\tablemaker\\": "src/"
}
},
"extra": {
"name": "Table Maker",
"handle": "tablemaker",
"documentationUrl": "https://github.com/verbb/tablemaker",
"changelogUrl": "https://raw.githubusercontent.com/verbb/tablemaker/craft-5/CHANGELOG.md",
"class": "verbb\\tablemaker\\TableMaker"
}
}