{"id":36995174,"url":"https://github.com/web-vision/deepl-write","last_synced_at":"2026-01-13T23:47:29.504Z","repository":{"id":329305874,"uuid":"922500635","full_name":"web-vision/deepl-write","owner":"web-vision","description":"TYPO3 extension for DeepL Write integration. Write better texts","archived":false,"fork":false,"pushed_at":"2025-12-18T16:55:50.000Z","size":132,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-12-21T20:32:03.782Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/web-vision.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-01-26T11:42:37.000Z","updated_at":"2025-12-18T16:55:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/web-vision/deepl-write","commit_stats":null,"previous_names":["web-vision/deepl-write"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/web-vision/deepl-write","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web-vision%2Fdeepl-write","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web-vision%2Fdeepl-write/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web-vision%2Fdeepl-write/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web-vision%2Fdeepl-write/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/web-vision","download_url":"https://codeload.github.com/web-vision/deepl-write/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/web-vision%2Fdeepl-write/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28405308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-13T23:47:29.419Z","updated_at":"2026-01-13T23:47:29.492Z","avatar_url":"https://github.com/web-vision.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TYPO3 extension `web-vision/deepl-write`\n\nTYPO3 extension for DeepL Write integration. Write better texts\n\n\u003e [!IMPORTANT]\n\u003e This extension is still in a early development phase and still\n\u003e considered unstable and releases as beta version.\n\n|                  | URL                                                         |\n|------------------|-------------------------------------------------------------|\n| **Repository:**  | https://github.com/web-vision/deepl-write                   |\n| **Read online:** | https://docs.typo3.org/p/web-vision/deepl-write/main/en-us/ |\n| **TER:**         | https://extensions.typo3.org/extension/deepl_write/         |\n\n## Compatibility\n\n| Branch | Version | TYPO3     | PHP                                          |\n|--------|---------|-----------|----------------------------------------------|\n| main   | 1.x-dev | v12 + v13 | 8.1, 8.2, 8.3, 8.4, 8.5 (depending on TYPO3) |\n\n## Installation\n\nInstall with your flavor:\n\n* Extension Manager\n* composer\n\nWe prefer composer installation:\n\n```bash\ncomposer require -W 'web-vision/deepl-write':'^1.0'\n```\n\nIn case you had a repository configured from early EAP phase, the repository\ncan be removed:\n\n```bash\ncomposer config --unset repositories.\"deepl-write\" \u0026\u0026 \\\n  composer update --lock\n```\n\n## Configuration\n\n`EXT:deepl_write` can be used standalone or in cooperation with established\n`EXT:deepltranslate_core` and requires that a `DeepL API KEY` needs to be\nconfigured for both extension in their respective extension configuration.\n\n\u003e [!IMPORTANT]\n\u003e Be aware that based on `DeepL Write API` requirements a paid `DeepL PRO`\n\u003e api key is required for this extension, which can also be used for the\n\u003e `deepltranslate-core` or using there a free key.\n\n## Sponsors\n\nWe appreciate very much the sponsorships of the developments and features in\nthe DeepL Translate Extension for TYPO3.\n\n## Create a release (maintainers only)\n\nPrerequisites:\n\n* git binary\n* ssh key allowed to push new branches to the repository\n* GitHub command line tool `gh` installed and configured with user having permission to create pull requests.\n\n**Prepare release locally**\n\n\u003e Set `RELEASE_BRANCH` to branch release should happen, for example: 'main'.\n\u003e Set `RELEASE_VERSION` to release version working on, for example: '1.0.0'.\n\n```shell\necho '\u003e\u003e Prepare release pull-request' ; \\\n  RELEASE_BRANCH='main' ; \\\n  RELEASE_VERSION='1.0.0' ; \\\n  git checkout main \u0026\u0026 \\\n  git fetch --all \u0026\u0026 \\\n  git pull --rebase \u0026\u0026 \\\n  git checkout ${RELEASE_BRANCH} \u0026\u0026 \\\n  git pull --rebase \u0026\u0026 \\\n  git checkout -b prepare-release-${RELEASE_VERSION} \u0026\u0026 \\\n  composer require --dev \"typo3/tailor\" \u0026\u0026 \\\n  ./.Build/bin/tailor set-version ${RELEASE_VERSION} \u0026\u0026 \\\n  composer remove --dev \"typo3/tailor\" \u0026\u0026 \\\n  git add . \u0026\u0026 \\\n  git commit -m \"[TASK] Prepare release ${RELEASE_VERSION}\" \u0026\u0026 \\\n  git push --set-upstream origin prepare-release-${RELEASE_VERSION} \u0026\u0026 \\\n  gh pr create --fill-verbose --base ${RELEASE_BRANCH} --title \"[TASK] Prepare release for ${RELEASE_VERSION} on ${RELEASE_BRANCH}\" \u0026\u0026 \\\n  git checkout main \u0026\u0026 \\\n  git branch -D prepare-release-${RELEASE_VERSION}\n```\n\nCheck pull-request and the pipeline run.\n\n**Merge approved pull-request and push version tag**\n\n\u003e Set `RELEASE_PR_NUMBER` with the pull-request number of the preparation pull-request.\n\u003e Set `RELEASE_BRANCH` to branch release should happen, for example: 'main' (same as in previous step).\n\u003e Set `RELEASE_VERSION` to release version working on, for example: `1.0.0` (same as in previous step).\n\n```shell\nRELEASE_BRANCH='main' ; \\\nRELEASE_VERSION='1.0.0' ; \\\nRELEASE_PR_NUMBER='123' ; \\\n  git checkout main \u0026\u0026 \\\n  git fetch --all \u0026\u0026 \\\n  git pull --rebase \u0026\u0026 \\\n  gh pr checkout ${RELEASE_PR_NUMBER} \u0026\u0026 \\\n  gh pr merge -rd ${RELEASE_PR_NUMBER} \u0026\u0026 \\\n  git tag ${RELEASE_VERSION} \u0026\u0026 \\\n  git push --tags\n```\n\nThis triggers the `on push tags` workflow (`publish.yml`) which creates the upload package,\ncreates the GitHub release and also uploads the release to the TYPO3 Extension Repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweb-vision%2Fdeepl-write","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweb-vision%2Fdeepl-write","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweb-vision%2Fdeepl-write/lists"}