-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
47 lines (47 loc) · 1.4 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": "kunstmaan/translator-bundle",
"type": "symfony-bundle",
"description": "A bundle which enables editing translations in the admin interface without need for editing the translations files. Translations will be stored in a (default) database and retrieved on the most efficient way possible.",
"keywords": [
"kunstmaan",
"translator",
"translations"
],
"homepage": "https://github.com/Kunstmaan/KunstmaanTranslatorBundle",
"license": "MIT",
"authors": [
{
"name": "Kunstmaan Team",
"homepage": "http://www.kunstmaan.be/",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.2|^8.0",
"kunstmaan/adminlist-bundle": "^5.9",
"doctrine/migrations": "^1.8|^2.3",
"box/spout": "^2.5"
},
"require-dev": {
"doctrine/data-fixtures": "^1.5",
"matthiasnoback/symfony-config-test": "^4.0",
"fakerphp/faker": "^1.15",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"symfony/phpunit-bridge": "^5.1" ,
"phpunit/phpunit": "^8.5"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Kunstmaan\\TranslatorBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "5.10-dev"
}
}
}