-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
58 lines (58 loc) · 1.49 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
{
"name": "yceruto/money-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for Money PHP",
"license": "MIT",
"keywords": ["money", "symfony-bundle"],
"authors": [
{
"name": "Yonel Ceruto Gonzalez",
"email": "yonelceruto@gmail.com"
}
],
"require": {
"php": ">=8.1",
"moneyphp/money": "^4.1",
"symfony/config": "^5.4|^6.0|^7.0",
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
"symfony/http-kernel": "^5.4|^6.0|^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"ext-gmp": "*",
"ext-intl": "*",
"doctrine/doctrine-bundle": "^2.8",
"doctrine/orm": "^2.14",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18.4",
"psalm/plugin-symfony": "^5.0",
"symfony/form": "^6.2",
"symfony/twig-bridge": "^6.2",
"twig/twig": "^3.5",
"vimeo/psalm": "^5.4"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Yceruto\\MoneyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yceruto\\MoneyBundle\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit tests -v"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}