Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 363bc29

Browse files
committed
composer.json:
- revert to php 5.3 - Change Author - add ext curl und json to requirements - remove php-duplicate from require-dev DeepL.php - add API_URL_SCHEMA constant - rewrite base-url - remove API_URL_AUTH_KEY constant - fix some typos - fix codestyle - revert back to php 5.3 - add some comments - add missin parameters to buildUrl and translate functions
1 parent 2296053 commit 363bc29

File tree

2 files changed

+132
-86
lines changed

2 files changed

+132
-86
lines changed

composer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "babymarkt/deepl-php-lib",
33
"type": "library",
4-
"description": "DeepL API Client Library supporting PHP >= 7.2 && PHP < 8.0",
4+
"description": "DeepL API Client Library supporting PHP >= 5.3 && PHP < 8.0",
55
"keywords": [
66
"babymarkt",
77
"deepl",
@@ -14,15 +14,16 @@
1414
"license": "MIT",
1515
"authors": [
1616
{
17-
"name": "Arkadius Jonczek",
18-
"email": "jonczek@babymarkt.de"
17+
"name": "Entwicklungsteam babymarkt.de",
18+
"email": "entwicklung@babymarkt.de"
1919
}
2020
],
2121
"require": {
22-
"php": ">=7.2 <8.0"
22+
"php": ">=5.3 <8.0",
23+
"ext-json": "*",
24+
"ext-curl": "*"
2325
},
2426
"require-dev": {
25-
"php": ">=7.2 <8.0",
2627
"phpmd/phpmd": "2.4.*",
2728
"phpunit/phpunit": "^4.8",
2829
"squizlabs/php_codesniffer": "^2.9"

0 commit comments

Comments
 (0)