forked from moneyphp/money
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (39 loc) · 1.08 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
{
"name": "mathiasverraes/money",
"description": "PHP implementation of Fowler's Money pattern",
"type": "library",
"keywords": [ "Money", "Value Object", "Generic Sub-domain" ],
"homepage": "http://verraes.net/2011/04/fowler-money-pattern-in-php/",
"license": "MIT",
"authors": [
{
"name": "Mathias Verraes",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
}
},
"autoload": {
"psr-0": {
"Money": "lib"
}
},
"config": {
"bin-dir": "bin"
},
"suggest": {
"TheBigBrainsCompany/TbbcMoneyBundle": "Very complete Symfony2 bundle with support for Twig, Doctrine, Forms, ...",
"pink-tie/money-bundle": "Pink-Tie's Symfony2 integration with Money library",
"Sylius/SyliusMoneyBundle": "Sylius' Symfony2 integration with Money library"
},
"minimum-stability": "dev"
}