-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 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
49
50
51
52
53
54
55
{
"name": "leowebguy/craft-currency-converter",
"description": "Craft plugin to convert currency using API & local storage",
"keywords": [
"craftcms",
"currency",
"convert",
"converter"
],
"version": "2.0.2",
"type": "craft-plugin",
"license": "proprietary",
"author": {
"name": "Leo",
"homepage": "https://github.com/leowebguy"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main",
"laravel/pint": "^1.14.0"
},
"autoload": {
"psr-4": {
"leowebguy\\currencyconverter\\": "src/"
}
},
"extra": {
"name": "Currency Converter",
"handle": "currency-converter",
"class": "leowebguy\\currencyconverter\\Currency"
},
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check src --ansi",
"fix-cs": "vendor/bin/ecs check src --ansi --fix",
"phpstan": "vendor/bin/phpstan analyse src",
"rector": "vendor/bin/rector process src --config vendor/craftcms/rector/sets/craft-cms-50.php",
"pint": "vendor/bin/pint -v src"
}
}