forked from Prezent/doctrine-translatable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.04 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
{
"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": ">=5.3.2",
"doctrine/common": "^2.3",
"jms/metadata": "~1.1"
},
"require-dev": {
"doctrine/orm": "^2.3",
"phpunit/phpunit": "^4.8 || ^5.6"
},
"autoload": {
"psr-0": { "Prezent\\Doctrine\\Translatable": "lib/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}