-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
58 lines (58 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
56
57
58
{
"name": "florianv/laravel-swap",
"type": "library",
"description": "Currency exchange rates library for Laravel and Lumen",
"keywords": [
"laravel",
"lumen",
"currency",
"money",
"rate",
"conversion",
"exchange rates"
],
"homepage": "https://github.com/florianv/laravel-swap",
"license": "MIT",
"authors": [
{
"name": "Florian Voutzinos",
"email": "[email protected]",
"homepage": "https://voutzinos.com"
}
],
"autoload": {
"psr-4": {
"Swap\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swap\\Laravel\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.1.3 || ^8.0",
"florianv/swap": "^4.0"
},
"require-dev": {
"graham-campbell/testbench": "^5.3",
"php-http/guzzle6-adapter": "^1.0",
"nyholm/psr7": "^1.0"
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"Swap\\Laravel\\SwapServiceProvider"
],
"aliases": {
"Swap": "Swap\\Laravel\\Facades\\Swap"
}
}
}
}