-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.58 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
{
"name": "riaanlom/laravel-exchange-rate",
"description": "Laravel Exchange Rate service. Forked for Lavel 9+ support.",
"keywords": [
"laravel",
"exchange rate",
"free currency converter api"
],
"homepage": "https://github.com/yoelpc4/laravel-exchange-rate",
"license": "MIT",
"authors": [
{
"name": "Yoel Peter Chandra",
"email": "yoelpc4@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.2.0",
"illuminate/container": "10.8|9.8|8.*|7.*|6.*",
"illuminate/contracts": "10.8|9.8|8.*|7.*|6.*",
"illuminate/support": "10.8|9.8|8.*|7.*|6.*",
"illuminate/validation": "10.8|9.8|8.*|7.*|6.*",
"psr/http-message": "^1.0.1"
},
"require-dev": {
"orchestra/testbench": "6.*|5.*|4.*",
"phpunit/phpunit": "9.*|8.4.*|8.3.*"
},
"autoload": {
"psr-4": {
"Yoelpc4\\LaravelExchangeRate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yoelpc4\\LaravelExchangeRate\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Yoelpc4\\LaravelExchangeRate\\ExchangeRateServiceProvider"
],
"aliases": {
"ExchangeRateService": "Yoelpc4\\LaravelExchangeRate\\ExchangeRateService"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}