-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.23 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
{
"name": "mibo/currencies",
"type": "library",
"description": "PHP Library of ISO-4217 standard",
"keywords": [
"ISO",
"ISO-4217",
"currencies",
"currency",
"MiBo",
"Library",
"PHP",
"Package",
"Lib",
"Money"
],
"authors": [
{
"name": "Michal Boris"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"MiBo\\Currencies\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MiBo\\Currencies\\Tests\\": [
"tests/Core/",
"tests/"
]
}
},
"extra": {
"meta": {
"installable": true,
"section": "",
"name": ""
}
},
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-xmlreader": "*",
"ext-simplexml": "*",
"psr/log": "^3.0",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.1",
"phpunit/php-invoker": "^5.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.9"
},
"config": {
"platform-check": true,
"lock": false
}
}