forked from Baby-Markt/deepl-php-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.2 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
{
"name": "babymarkt/deepl-php-lib",
"type": "library",
"description": "DeepL API Client Library supporting PHP >= 5.3 && PHP < 8.0",
"keywords": [
"babymarkt",
"deepl",
"deeply",
"i18n",
"translation",
"translator"
],
"homepage": "https://github.com/Baby-Markt/deepl-php-lib",
"license": "MIT",
"authors": [
{
"name": "Arkadius Jonczek",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3 <8.0"
},
"require-dev": {
"php": ">=5.3 <8.0",
"phpmd/phpmd": "2.4.*",
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.9"
},
"autoload": {
"psr-4": {
"BabyMarkt\\DeepL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BabyMarkt\\DeepL\\": "tests/"
}
},
"scripts": {
"cs": "vendor/bin/phpcs",
"md": "vendor/bin/phpmd src,tests text phpmd.xml.dist",
"test": "vendor/bin/phpunit",
"test:all": [
"composer cs",
"composer md",
"composer test"
]
},
"config": {
"sort-packages": true
}
}