-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
39 lines (39 loc) · 1.28 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
{
"name": "worldia/textmaster-api",
"type": "library",
"description": "Textmaster API v1 client",
"homepage": "https://github.com/worldia/textmaster-api",
"keywords": ["textmaster", "translation", "api"],
"license": "proprietary",
"authors": [
{ "name": "Christian Daguerre", "email": "[email protected]" },
{ "name": "Pierre Ducoudray", "email": "[email protected]" }
],
"require": {
"php": ">=5.6.0",
"ext-curl": "*",
"guzzlehttp/guzzle": "^6.2",
"pagerfanta/pagerfanta": "^1.0",
"phpspec/php-diff": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"friendsofphp/php-cs-fixer": "@stable",
"symfony/http-foundation": "^2.7|^4.0",
"sylius/resource": "1.0.0-beta3",
"doctrine/orm": "^2.3",
"gedmo/doctrine-extensions": "^2.4"
},
"suggest": {
"symfony/http-foundation": "To use the callback handler",
"pagerfanta/pagerfanta": "To use the manager"
},
"autoload": {
"psr-4": { "Textmaster\\": "lib/Textmaster/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}