forked from lexik/LexikCurrencyBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
55 lines (55 loc) · 1.56 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
{
"name": "cocolabs-sas/currency-bundle",
"type": "symfony-bundle",
"description": "This Symfony2 bundle provide a service and a Twig extension to convert and display currencies. It is a fork of lexik/currency-bundle",
"keywords": ["Symfony2", "bundle", "currency"],
"homepage": "https://github.com/lexik/LexikCurrencyBundle",
"license": "MIT",
"authors": [
{
"name": "Cedric Girard",
"email": "[email protected]"
},
{
"name": "Dev Lexik",
"email": "[email protected]"
},
{
"name": "Cocolabs",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.5",
"ext-curl": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"symfony/config": "^4.0|^5.0",
"symfony/console": "^4.0|^5.0",
"symfony/dependency-injection": "^4.0|^5.0",
"symfony/framework-bundle": "^4.0|^5.0",
"symfony/validator": "^4.0|^5.0",
"twig/twig": "^v2.14"
},
"require-dev": {
"doctrine/data-fixtures": "^1.5",
"doctrine/doctrine-bundle": "^1.8|^2.0",
"doctrine/orm": "^2.7",
"symfony/phpunit-bridge": "^4.3|^5.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Lexik\\Bundle\\CurrencyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lexik\\Bundle\\CurrencyBundle\\Tests\\": "tests/"
}
}
}