forked from matmar10/money-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.05 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
{
"name": "matmar10/money-bundle",
"description": "A series of money related utility classes wrapping integer math and money fractional allocation.",
"keywords": ["currency", "money", "currency code", "integer math", "iso4217", "validator"],
"type": "symfony-bundle",
"license": "Apache",
"version": "2.0.0",
"authors": [
{
"name": "Matthew J. Martin",
"email": "matthew.mar10@gmail.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/matmar10/lib-money"
}
],
"require": {
"symfony/symfony": "~2.4",
"symfony/framework-bundle": "~2.4",
"doctrine/orm": "*",
"jms/serializer": "~0.15",
"jms/aop-bundle": "~1.0",
"matmar10/lib-money": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"Matmar10\\Bundle\\MoneyBundle\\Tests": "tests",
"Matmar10\\Bundle\\MoneyBundle": "src"
}
}
}