-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.02 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
{
"name": "trendyminds/craft-design-tokens",
"description": "A Craft dropdown field powered by JSON files in your project",
"type": "craft-plugin",
"version": "1.1.1",
"keywords": ["token field", "craft", "craft cms"],
"license": "MIT",
"authors": [
{
"name": "TrendyMinds",
"homepage": "https://trendyminds.com"
}
],
"support": {
"source": "https://github.com/trendyminds/craft-design-tokens",
"docs": "https://github.com/trendyminds/craft-design-tokens/blob/main/README.md"
},
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"trendyminds\\designtokens\\": "src/"
}
},
"extra": {
"name": "Design Tokens",
"handle": "designtokens",
"class": "trendyminds\\designtokens\\DesignTokens",
"changelogUrl": "https://raw.githubusercontent.com/trendyminds/craft-design-tokens/main/CHANGELOG.md"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": false,
"craftcms/plugin-installer": false
}
}
}