forked from akeneo/php-crowdin-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (42 loc) · 1.07 KB
/
composer.json
File metadata and controls
43 lines (42 loc) · 1.07 KB
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
{
"name": "akeneo/crowdin-api",
"type": "library",
"description": "Crowdin PHP API client",
"homepage": "https://github.com/akeneo/php-crowdin-api",
"keywords": ["crowdin", "translation", "localization", "api"],
"license": "MIT",
"authors": [
{
"name": "Nicolas Dupont <nicolas@akeneo.com>",
"homepage": "http://www.akeneo.com"
},
{
"name": "Julien Janvier <j.janvier@gmail.com>"
},
{
"name": "Laurent Ghirardotti <laurent@ghirardotti.fr>",
"homepage": "http://ghirardotti.fr"
}
],
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpspec/phpspec": "2.5.*",
"friendsofphp/php-cs-fixer": "1.11.*"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Akeneo\\Crowdin\\": "src/Akeneo/Crowdin/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}