-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
54 lines (54 loc) · 1.37 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
{
"name": "imanilchaudhari/yii2-currency-converter",
"description": "This extension will help to find out current currency conversion rate.",
"type": "yii2-extension",
"keywords": ["yii2","extension"],
"license": "MIT",
"authors": [
{
"name": "Anil Chaudhari",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"repositories":[
{
"type": "git",
"url": "https://github.com/imanilchaudhari/yii2-currency-converter.git"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=7.4.0",
"yiisoft/yii2": "^2.0",
"yiisoft/yii2-httpclient": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"rector/rector": "^1.0"
},
"autoload": {
"psr-4": {
"imanilchaudhari\\CurrencyConverter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"imanilchaudhari\\CurrencyConverter\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"scripts": {
"test": "phpunit --testdox --no-interaction",
"test-watch": "phpunit-watcher watch"
}
}