-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.91 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 1.91 KB
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
{
"name": "florianv/exchanger",
"description": "PHP exchange rate provider layer for currency conversion: 30+ services, chain fallback, and caching.",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"currency-conversion",
"exchange-rates",
"exchange-rate-api",
"forex",
"fallback",
"swap",
"money"
],
"authors": [
{
"name": "Florian Voutzinos",
"email": "florian@voutzinos.com",
"homepage": "https://voutzinos.com"
}
],
"homepage": "https://github.com/florianv/exchanger",
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.19",
"php-http/httplug": "^1.0 || ^2.0",
"psr/http-factory": "^1.0.2",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95",
"nyholm/psr7": "^1.0",
"php-http/message": "^1.7",
"php-http/mock-client": "^1.0",
"phpunit/phpunit": "^11.0 || ^12.0",
"roave/backward-compatibility-check": "^8.9",
"vimeo/psalm": "^6.0"
},
"autoload": {
"psr-4": {
"Exchanger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Exchanger\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"cs:check": "vendor/bin/php-cs-fixer fix --no-interaction --ansi --verbose --dry-run",
"cs:fix": "vendor/bin/php-cs-fixer fix --no-interaction --ansi --quiet",
"psalm": "vendor/bin/psalm --no-progress",
"test": "vendor/bin/phpunit"
}
}