-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.26 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
56
57
58
59
60
61
{
"name": "norbybaru/exchange-rate",
"description": "Laravel Currency Exchange rate",
"type": "library",
"license": "MIT",
"keywords": [
"exchange rate",
"rate",
"exchange",
"currency"
],
"authors": [
{
"name": "Norby Baruani",
"email": "norbybaru@gmail.com"
}
],
"autoload": {
"psr-4": {
"NorbyBaru\\ExchangeRate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NorbyBaru\\ExchangeRate\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"NorbyBaru\\ExchangeRate\\ExchangeRateServiceProvider"
],
"aliases": {
"Exchanger": "NorbyBaru\\ExchangeRate\\Facades\\Exchange"
}
}
},
"require": {
"php": "^8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.9",
"illuminate/console": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.18",
"phpunit/phpunit": "^10.0|^11.0"
},
"prefer-stable": true,
"minimum-stability": "stable",
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"pint": "./vendor/bin/pint -v",
"test": "phpunit"
}
}