-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 1.91 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "shipsaas/currency-fx",
"type": "library",
"version": "1.0.0",
"description": "A PHP Library handles Currency FX from multiple online FX services. Battery-included.",
"keywords": [
"laravel library",
"php library",
"library",
"currency",
"fx",
"currency rates",
"exchange rates",
"fx rates"
],
"authors": [
{
"name": "Phat Tran (Seth Phat)",
"email": "[email protected]",
"homepage": "https://github.com/sethsandaru",
"role": "Sr.SWE"
}
],
"license": "MIT",
"require": {
"php": "^8.1|^8.2",
"shipsaas/never-throw": "^1.0",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"fakerphp/faker": "^v1.20.0",
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^9|^10",
"phpunit/php-code-coverage": "^9|^10",
"friendsofphp/php-cs-fixer": "^3.10",
"laravel/framework": "^10",
"orchestra/testbench": "^8"
},
"extra": {
"laravel": {
"providers": [
"CurrencyFX\\Laravel\\CurrencyFxServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"CurrencyFX\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CurrencyFX\\Tests\\": "tests/"
}
},
"scripts": {
"test-coverage": [
"@php vendor/bin/phpunit --testsuite CurrencyFxUnitSuite --coverage-clover coverage.xml"
],
"test-unit": [
"@php vendor/bin/phpunit --testsuite CurrencyFxUnitSuite"
],
"test-integration": [
"@php vendor/bin/phpunit --testsuite CurrencyFxIntegrationSuite"
],
"test-e2e": [
"@php vendor/bin/phpunit --testsuite CurrencyFxE2ESuite"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}