-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
49 lines (49 loc) · 1.09 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
49
{
"name": "marionnewlevant/twig-perversion",
"description": "Making twig do things it really shouldn't",
"version": "5.0.1",
"type": "craft-plugin",
"keywords": [
"craft",
"craftcms",
"plugin",
"twigperversion"
],
"license": "MIT",
"authors": [
{
"name": "Marion Newlevant",
"homepage": "http://marion.newlevant.com"
}
],
"support": {
"issues": "https://github.com/marionnewlevant/craft-twig_perversion/issues?state=open",
"source": "https://github.com/marionnewlevant/craft-twig_perversion",
"docs": "https://github.com/marionnewlevant/craft-twig_perversion/blob/v5/README.md"
},
"require": {
"php": ">=8.2",
"craftcms/cms": "^5.0"
},
"autoload": {
"psr-4": {
"marionnewlevant\\twigperversion\\": "src/"
}
},
"extra": {
"handle": "twig-perversion",
"name": "Twig Perversion"
},
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"require-dev": {
"craftcms/phpstan": "dev-main"
}
}