This repository has been archived by the owner on Jan 3, 2019. It is now read-only.
forked from TheBigBrainsCompany/TbbcMoneyBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.87 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
{
"name": "tbbc/money-bundle",
"type": "symfony-bundle",
"description": "This is a Symfony2 bundle that integrates the php money library from Mathias Verraes (Fowler pattern): https://github.com/mathiasverraes/money.",
"keywords": ["money", "currency", "fowler", "conversion"],
"homepage": "https://github.com/TheBigBrainsCompany/TbbcMoneyBundle",
"license": "MIT",
"authors": [
{
"name": "Philippe Le Van",
"homepage": "https://twitter.com/plv"
},
{
"name": "Sebastien Lefebvre"
}
],
"require": {
"php": ">=5.3.9",
"ext-curl" : "*",
"symfony/framework-bundle": "~2.8|~3.0|^4.0",
"moneyphp/money": "^1.2.1",
"symfony/form": "~2.8|~3.0|^4.0",
"symfony/twig-bundle": "~2.8|~3.0|^4.0",
"symfony/console": "~2.8|~3.0|^4.0",
"symfony/dom-crawler": "~2.8|~3.0|^4.0",
"jms/serializer": "^1.0"
},
"require-dev": {
"symfony/class-loader": "~2.8|~3.0|^4.0",
"symfony/yaml": "~2.8|~3.0|^4.0",
"symfony/finder": "~2.8|~3.0|^4.0",
"symfony/browser-kit": "~2.8|~3.0|^4.0",
"beberlei/DoctrineExtensions": "0.3.*",
"ext-sqlite3": "*",
"doctrine/doctrine-bundle": "~1.1",
"doctrine/orm": "~2.3",
"phpunit/phpunit": "~4|~5",
"phpunit/dbunit": "~1.4",
"symfony/phpunit-bridge": "~2.8|~3.0|^4.0",
"squizlabs/php_codesniffer": "^2.7",
"m6web/Symfony2-coding-standard": "^3.3"
},
"suggest": {
"doctrine/doctrine-bundle": "~1.1",
"doctrine/orm": "~2.3",
"florianv/exchanger": "Exchanger is a PHP framework to work with currency exchange rates from various services."
},
"autoload": {
"psr-4": { "Tbbc\\MoneyBundle\\": "" },
"exclude-from-classmap": [ "/Tests/" ]
},
"abandoned": true
}