forked from Prezent/doctrine-translatable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.21 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
{
"name": "prezent/doctrine-translatable",
"type": "library",
"description": "Translatable behaviour extension for Doctrine2",
"keywords": [
"doctrine2",
"extensions",
"translatable",
"i18n"
],
"homepage": "http://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.1.0",
"doctrine/common": "^2.3|^3.0",
"jms/metadata": "^1.1|^2.0"
},
"require-dev": {
"doctrine/orm": "^2.3",
"symfony/yaml": "^2.7|^3.0|^4.0|^5.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"
}
}
}