This repository was archived by the owner on Apr 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.44 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
{
"name": "codedge/trnsltr",
"description": "A translation service with DeepL integration using (in-memory) caching to save translated texts.",
"license": "Apache-2.0",
"authors": [
{
"name": "Holger Lösken",
"email": "post@codedge.de",
"homepage": "https://codedge.de",
"role": "Developer"
}
],
"require": {
"php": ">=7.3.0",
"ext-json": "*",
"awurth/slim-validation": "^3.1",
"guzzlehttp/guzzle": "^6.3",
"illuminate/database": "^5.8",
"monolog/monolog": "^1.17",
"predis/predis": "^1.1",
"robmorgan/phinx": "^0.10.6",
"slim/slim": "^3.1",
"tightenco/collect": "^5.8",
"tuupola/cors-middleware": "^0.9.4",
"tuupola/slim-jwt-auth": "^3.3",
"vlucas/phpdotenv": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"slevomat/coding-standard": "^5.0"
},
"autoload-dev": {
"psr-4": {
"App\\": "src/",
"Tests\\": "tests/"
}
},
"config": {
"process-timeout" : 0,
"sort-packages": true
},
"scripts": {
"check-style": "phpcs -s --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "phpcbf --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"test": "vendor/bin/phpunit"
}
}