-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.32 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "peso/moneyphp-exchange",
"type": "library",
"description": "Peso-based Exchange class for Money",
"keywords": ["currency", "exchange", "conversion", "phpeso", "peso", "money", "moneyphp"],
"homepage": "https://phpeso.readthedocs.io/",
"license": "MIT",
"authors": [{
"name": "Anton Smirnov",
"role": "developer",
"homepage": "https://sandfox.me/",
"email": "sandfox+phpeso@sandfox.me"
}],
"support": {
"issues": "https://github.com/phpeso/moneyphp-exchange/issues",
"source": "https://github.com/phpeso/moneyphp-exchange",
"docs": "https://phpeso.readthedocs.io/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Peso\\Money\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Peso\\Money\\Tests\\": "tests"
}
},
"require": {
"php": "^8.2",
"moneyphp/money": "^4.1",
"peso/core": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"psy/psysh": "*",
"sandfox.dev/code-standard": "^1.2025.09.17",
"squizlabs/php_codesniffer": "*",
"vimeo/psalm": "^6.12"
}
}