forked from moneyphp/money
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.2 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
{
"name": "moneyphp/money",
"description": "PHP implementation of Fowler's Money pattern",
"keywords": ["money", "vo", "value object"],
"homepage": "http://verraes.net/2011/04/fowler-money-pattern-in-php/",
"license": "MIT",
"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",
"symfony/phpunit-bridge": "^4",
"ext-bcmath": "*",
"ext-gmp": "*",
"ext-intl": "*",
"florianv/swap": "^3.0",
"psr/cache": "^1.0",
"cache/taggable-cache": "^0.4.0",
"phpspec/phpspec": "^3",
"henrikbjorn/phpspec-code-coverage": "^3",
"moneyphp/iso-currencies": "^3.0",
"sllh/php-cs-fixer-styleci-bridge": "^2.1",
"php-http/message": "^1.4",
"php-http/mock-client": "^0.3.3"
},
"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",
"psr/cache-implementation": "Used for Currency caching"
},
"autoload": {
"psr-4": {
"Money\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Money\\": "tests/",
"spec\\Money\\": "spec/"
}
},
"scripts": {
"test": [
"vendor/bin/phpspec run",
"vendor/bin/phpunit"
],
"test-ci": [
"vendor/bin/phpspec run -c phpspec.ci.yml",
"vendor/bin/phpunit --coverage-text --coverage-clover=build/unit_coverage.xml"
],
"update-currencies": "cp vendor/moneyphp/iso-currencies/resources/current.php resources/currency.php"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}