-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
executable file
·46 lines (46 loc) · 1.08 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
{
"name": "crowdin/crowdin-api-client",
"description": "PHP client library for Crowdin API v2",
"version": "1.14.0",
"keywords": [
"crowdin",
"sdk",
"api",
"api-client",
"client"
],
"homepage": "https://github.com/crowdin/crowdin-api-client-php",
"license": "MIT",
"authors": [
{
"name": "Crowdin",
"homepage": "https://crowdin.com"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.2 || ^7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3.0",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.6"
},
"autoload": {
"psr-4": {
"CrowdinApiClient\\": "src/CrowdinApiClient"
}
},
"autoload-dev": {
"psr-4": {
"CrowdinApiClient\\Tests\\": "tests/CrowdinApiClient/"
}
},
"extra": {
"laravel": {
"providers": [
"CrowdinApiClient\\FrameworkSupport\\Laravel\\CrowdinServiceProvider"
]
}
}
}