-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
33 lines (33 loc) · 966 Bytes
/
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
{
"name": "daften/addressing-bundle",
"description": "Provides an integration between commerceguys addressing package and Symfony.",
"type": "library",
"license": "MIT",
"keywords": ["postal", "address", "internationalization", "localization", "addressing", "commerceguys"],
"authors": [
{
"name": "daften",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 | ^8.0",
"commerceguys/addressing": "^2",
"doctrine/orm": "^2.6",
"symfony/form": "^4.4 | ^5.3 | ^6.0",
"symfony/framework-bundle": "^4.4 | ^5.3 | ^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"symfony/phpunit-bridge": "^4.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": { "Daften\\Bundle\\AddressingBundle\\": "" }
}
}