-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.3 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": "awilum/craft-nice",
"description": "A nice plugin with nice functions for nice data representation in Craft CMS",
"type": "craft-plugin",
"keywords": ["twig", "craft", "craft-plugin", "craftcms"],
"license": "MIT",
"authors": [
{
"name": "Sergey Romanenko",
"email": "[email protected]",
"homepage": "https://awilum.github.io"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/awilum/craft-nice/issues?state=open",
"source": "https://github.com/awilum/craft-nice",
"docs": "https://github.com/awilum/craft-nice/master/README.md"
},
"require": {
"craftcms/cms": "^4.3.3"
},
"autoload": {
"psr-4": {
"Awilum\\CraftNice\\": "src/"
},
"files": ["src/functions.php"]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"name": "Nice",
"handle": "nice",
"class": "Awilum\\CraftNice\\Nice"
},
"require-dev": {
"ext-iconv": "*",
"pestphp/pest": "^1.22",
"phpstan/phpstan": "^1.8.0"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true
}
}
}