-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.6 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "peso/currencyapi-service",
"type": "library",
"license": "MIT",
"description": "CurrencyAPI data provider for Peso",
"keywords": ["currency", "exchange rates", "peso", "phpeso", "currency api", "currencyapi.com"],
"homepage": "https://phpeso.readthedocs.io/",
"authors": [{
"name": "Anton Smirnov",
"role": "developer",
"homepage": "https://sandfox.me/",
"email": "sandfox+phpeso@sandfox.me"
}],
"support": {
"issues": "https://github.com/phpeso/currencyapi-service/issues",
"source": "https://github.com/phpeso/currencyapi-service",
"docs": "https://phpeso.readthedocs.io/"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Peso\\Services\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Peso\\Services\\Tests\\": "tests"
}
},
"require": {
"php": "^8.2",
"peso/core": "^1.1",
"psr/http-client": "^1",
"psr/http-factory": "^1",
"psr/simple-cache": "^1 || ^2 || ^3"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.9",
"php-http/discovery": "^1.20",
"php-http/mock-client": "^1.6",
"phpunit/phpunit": "^11.5",
"psy/psysh": "*",
"sandfox.dev/code-standard": "^1.2025.06.29",
"squizlabs/php_codesniffer": "*",
"symfony/cache": "^7.3",
"vimeo/psalm": "^6.13"
}
}