-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
49 lines (49 loc) · 1.28 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
{
"name": "prezent/doctrine-translatable",
"type": "library",
"description": "Translatable behaviour extension for Doctrine2",
"keywords": [
"doctrine2",
"extensions",
"translatable",
"i18n"
],
"homepage": "https://www.prezent.nl",
"authors": [{
"name": "Prezent Internet B.V.",
"email": "[email protected]"
}],
"license": "MIT",
"support": {
"wiki": "https://github.com/prezent/doctrine-translatable/tree/master/doc",
"issues": "https://github.com/prezent/doctrine-translatable/issues",
"source": "https://github.com/prezent/doctrine-translatable"
},
"require": {
"php": ">=7.4.0",
"doctrine/common": "^2.3|^3.0",
"doctrine/orm": ">=2.12.0",
"jms/metadata": "^1.1|^2.0",
"symfony/cache": "^5.0|^6.0",
"doctrine/annotations": "^1.13"
},
"require-dev": {
"symfony/yaml": "^5.0|6.0",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Prezent\\Doctrine\\Translatable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Prezent\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}