-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
51 lines (47 loc) · 1.6 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
{
"name": "webfactory/polyglot-bundle",
"type": "symfony-bundle",
"description": "Symfony Bundle simplifying translations of values stored in Doctrine ORM entities",
"license": "MIT",
"authors": [
{
"name": "webfactory GmbH",
"email": "[email protected]",
"homepage": "http://www.webfactory.de",
"role": "Developer"
}
],
"autoload": {
"psr-4": { "Webfactory\\Bundle\\PolyglotBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Webfactory\\Bundle\\PolyglotBundle\\Tests\\": "tests" }
},
"require": {
"php": "8.1.*|8.2.*|8.3.*",
"doctrine/collections": "^1.0|^2.0",
"doctrine/dbal": "^2.3|^3.0",
"doctrine/event-manager": "^1.0|^2.0",
"doctrine/orm": "^2.13|^3.0",
"doctrine/persistence": "^1.3.8|^2.1|^3.1",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/config": "^5.4|^6.4|^7.0",
"symfony/dependency-injection": "^5.4|^6.4|^7.0",
"symfony/deprecation-contracts": "^2.0|^3.0",
"symfony/event-dispatcher": "^5.4|^6.4|^7.0",
"symfony/http-kernel": "^5.4|^6.4|^7.0"
},
"require-dev": {
"doctrine/common": "^2.0|^3.1",
"doctrine/doctrine-bundle": "^2.0",
"phpunit/phpunit": "^9.6.18",
"symfony/error-handler": "^6.4|^7.0",
"symfony/framework-bundle": "^5.4|^6.4|^7.0",
"symfony/phpunit-bridge": ">= 7.0",
"symfony/yaml": "^5.4|^6.4|^7.0",
"webfactory/doctrine-orm-test-infrastructure": "^1.14"
},
"config": {
"sort-packages": true
}
}