-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
37 lines (37 loc) · 977 Bytes
/
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
{
"name": "evp/money",
"description": "Money library",
"type": "library",
"license": "MIT",
"suggest": {
"paysera/lib-serializer": "Allows to Serialize/Deserialize Money objects"
},
"autoload": {
"psr-4": {
"Evp\\Component\\Money\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Evp\\Component\\Money\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.0 || ^8.0",
"ext-bcmath": "*",
"ext-mbstring": "*",
"maba/math": "^1.0",
"maba/monetary": "^0.10.0",
"paysera/lib-dependency-injection": "^1.0",
"paysera/lib-serializer": "^1.0 || ^2.0 || ^3.0",
"symfony/dependency-injection": "^2.3 || ^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^9.6",
"yoast/phpunit-polyfills": "^1.0"
},
"config": {
"bin-dir": "bin",
"sort-packages": true
}
}