-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
48 lines (48 loc) · 1.16 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
48
{
"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"
},
{
"name": "JM Leroux <jean-marie.leroux@akeneo.com>"
}
],
"require": {
"php": "^8.1",
"symfony/http-client": "^6.3.2"
},
"require-dev": {
"phpspec/phpspec": "^7.4.0",
"friendsofphp/php-cs-fixer": "^v3.23.0",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Akeneo\\Crowdin\\": "src/Akeneo/Crowdin/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Akeneo\\": "spec/Akeneo"
}
}
}