-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
57 lines (57 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
{
"name": "akeneo/nelson",
"type": "project",
"description": "Command based translation workflow between Crowdin and Github",
"tags": ["Crowdin", "Github", "Collaborative", "Translation", "Workflow"],
"license": "OSL-3.0",
"authors": [
{
"name": "Nicolas Dupont",
"email": "[email protected]"
},
{
"name": "Pierre Allard",
"email": "[email protected]"
},
{
"name": "JM Leroux",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-simplexml": "*",
"ext-zip": "*",
"akeneo/crowdin-api": "v2.0.4",
"guzzlehttp/guzzle": "^6.5",
"http-interop/http-factory-guzzle": "^1.2",
"knplabs/github-api": "v3.9.0",
"monolog/monolog": "@stable",
"symfony/config": "^6.2.0",
"symfony/console": "^6.2.0",
"symfony/dependency-injection": "^6.2.0",
"symfony/finder": "^6.2.0",
"symfony/translation": "^6.2.0",
"symfony/yaml": "^6.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.14.0",
"phpspec/phpspec": "^7.3.0",
"phpstan/phpstan": "^1.10.0",
"phpstan/phpstan-deprecation-rules": "^1.1.0",
"phpunit/phpunit": "^9",
"symfony/phpunit-bridge": "^6.2"
},
"autoload": {
"psr-4": {
"Akeneo\\": "src/Akeneo",
"spec\\Akeneo\\": "spec/Akeneo"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}