-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
32 lines (32 loc) · 1007 Bytes
/
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
{
"name": "yurijbogdanov/remote-translations-bundle",
"type": "symfony-bundle",
"description": "YBRemoteTranslationsBundle - Symfony bundle for using translations stored remotely (API, AWS S3, Google Sheets, PDO).",
"keywords": ["php", "symfony", "symfony-bundle", "symfony-translation", "symfony-translations"],
"homepage": "https://github.com/yurijbogdanov/symfony-remote-translations-bundle",
"license": "MIT",
"authors": [
{
"name": "Yurij Bogdanov",
"email": "bogdanovyurij@gmail.com"
}
],
"require": {
"php": ">=7.1",
"aws/aws-sdk-php": "^3.28",
"google/apiclient": "^2.1",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.0"
},
"autoload": {
"psr-4": {
"YB\\Bundle\\RemoteTranslationsBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "stable"
}