forked from moneyphp/money
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
85 lines (85 loc) · 2.51 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "moneyphp/money",
"description": "PHP implementation of Fowler's Money pattern",
"license": "MIT",
"keywords": ["money", "vo", "value object"],
"homepage": "http://moneyphp.org",
"authors": [
{
"name": "Mathias Verraes",
"email": "[email protected]",
"homepage": "http://verraes.net"
},
{
"name": "Márk Sági-Kazár",
"email": "[email protected]"
},
{
"name": "Frederik Bosch",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.4 || ^7.0",
"symfony/phpunit-bridge": "^4",
"ext-bcmath": "*",
"ext-gmp": "*",
"ext-intl": "*",
"florianv/exchanger": "^1.0",
"florianv/swap": "^3.0",
"psr/cache": "^1.0",
"cache/taggable-cache": "^0.4.0",
"phpspec/phpspec": "^3.0",
"leanphp/phpspec-code-coverage": "^3.0 || ^4.0",
"doctrine/instantiator": "^1.0.5",
"moneyphp/iso-currencies": "^3.0",
"php-http/message": "^1.4",
"php-http/mock-client": "^1.0.0"
},
"suggest": {
"ext-bcmath": "Calculate without integer limits",
"ext-gmp": "Calculate without integer limits",
"ext-intl": "Format Money objects with intl",
"florianv/swap": "Exchange rates library for PHP",
"florianv/exchanger": "Exchange rates library for PHP",
"psr/cache-implementation": "Used for Currency caching"
},
"autoload": {
"psr-4": {
"Money\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Money\\": "tests/",
"spec\\Money\\": "spec/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"clean": "rm -rf build/ vendor/",
"test": [
"vendor/bin/phpunit -v --exclude-group segmentation"
],
"test-coverage": [
"vendor/bin/phpspec run -c phpspec.ci.yml",
"vendor/bin/phpunit -v --coverage-text --coverage-clover=build/unit_coverage.xml"
],
"update-currencies": [
"cp vendor/moneyphp/iso-currencies/resources/current.php resources/currency.php",
"php resources/generate-money-factory.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}