Download the PHP package codedge/trnsltr without Composer
On this page you can find all versions of the php package codedge/trnsltr. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download codedge/trnsltr
More information about codedge/trnsltr
Files in codedge/trnsltr
Package trnsltr
Short Description A translation service with DeepL integration using (in-memory) caching to save translated texts.
License Apache-2.0
Informations about the package trnsltr
trnsltr - a translation caching service backed by DeepL
trnsltr is a translation caching service that stores already translated data in (currently) Redis. Words and texts that are not already in cache are going to be send to the DeepL API, will be translated, stored in cache and then being returned.
It brings a separate Vue.js frontend and a Slim Framework based backend.
Backend
Configuration
The backend configuration can be done via environment variables, easily to be changed in a .env
file. You can check
the .env.example
file for configuration vars.
Redis
REDIS_HOST
: default127.0.0.1
REDIS_PORT
: default6379
REDIS_DATABASE
: default0
If you are fine with the default you can remove all REDIS_* config keys from your .env
file.
DeepL
DEEPL_HOST
: defaulthttps://api.deepl.com
DEEPL_API_TOKEN
[provide your API token]
JWT (Json Web Tokens) For authentication JWT (Json Web Tokens) are used. Please specify a strong secret to encrypt the token.
APP_API_SECRET
: defaultsecret
A requirement for this to work is a working database connection to some users
table where all your users are saved.
When this is set up, you can use the /auth/token
route to get a valid token.
If you want to generate a new users table you can run
Example for getting a token:
Response:
Frontend
You can run frontend and backend separately. To configure where your backend is reachable create a .env
file in your frontend/
folder
or copy the .env.example
file.
The variable VUE_APP_API_URL
is the url to the backend API. Under which URL you run the frontend is totally up to you.
For authentication against the backend please generate a valid token
All versions of trnsltr with dependencies
ext-json Version *
awurth/slim-validation Version ^3.1
guzzlehttp/guzzle Version ^6.3
illuminate/database Version ^5.8
monolog/monolog Version ^1.17
predis/predis Version ^1.1
robmorgan/phinx Version ^0.10.6
slim/slim Version ^3.1
tightenco/collect Version ^5.8
tuupola/cors-middleware Version ^0.9.4
tuupola/slim-jwt-auth Version ^3.3
vlucas/phpdotenv Version ^3.3