-
- Téléchargements
feat: conversion des documents aux formats .doc, .docx, ou .html...
...en proposant diverses méthodes : - un exécutable libreoffice sur le serveur ; - un appel à un serveur de conversion externe ; - la librairie PHPWord (https://github.com/PHPOffice/PHPWord) dont les résultats ne sont pas forcément à la hauteur (du moins pour le moment).
parent
1c305bba
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Affichage de
- .gitignore 1 ajout, 0 suppression.gitignore
- action/api_convert_to.php 34 ajouts, 22 suppressionsaction/api_convert_to.php
- composer.json 2 ajouts, 1 suppressioncomposer.json
- composer.lock 164 ajouts, 2 suppressionscomposer.lock
- src/Converter.php 18 ajouts, 0 suppressionsrc/Converter.php
- src/Converters/ApiConverter.php 60 ajouts, 0 suppressionsrc/Converters/ApiConverter.php
- src/Converters/LibreofficeConverter.php 54 ajouts, 0 suppressionsrc/Converters/LibreofficeConverter.php
- src/Converters/PhpWordConverter.php 26 ajouts, 0 suppressionsrc/Converters/PhpWordConverter.php
- src/Handler.php 15 ajouts, 3 suppressionssrc/Handler.php
- src/Interfaces/ConverterInterface.php 8 ajouts, 0 suppressionsrc/Interfaces/ConverterInterface.php
- src/Utils/ConverterUtils.php 101 ajouts, 0 suppressionsrc/Utils/ConverterUtils.php
- vendor/composer/autoload_psr4.php 2 ajouts, 0 suppressionvendor/composer/autoload_psr4.php
- vendor/composer/autoload_static.php 10 ajouts, 0 suppressionvendor/composer/autoload_static.php
- vendor/composer/installed.json 167 ajouts, 0 suppressionvendor/composer/installed.json
- vendor/composer/installed.php 20 ajouts, 2 suppressionsvendor/composer/installed.php
- vendor/phpoffice/math/.github/dependabot.yml 11 ajouts, 0 suppressionvendor/phpoffice/math/.github/dependabot.yml
- vendor/phpoffice/math/.github/workflows/deploy.yml 51 ajouts, 0 suppressionvendor/phpoffice/math/.github/workflows/deploy.yml
- vendor/phpoffice/math/.github/workflows/php.yml 116 ajouts, 0 suppressionvendor/phpoffice/math/.github/workflows/php.yml
- vendor/phpoffice/math/.gitignore 9 ajouts, 0 suppressionvendor/phpoffice/math/.gitignore
- vendor/phpoffice/math/.php-cs-fixer.dist.php 45 ajouts, 0 suppressionvendor/phpoffice/math/.php-cs-fixer.dist.php
... | ... | @@ -14,7 +14,8 @@ |
}, | ||
"require": { | ||
"php": "^8.2", | ||
"ext-dom": "*" | ||
"ext-dom": "*", | ||
"phpoffice/phpword": "^1.3" | ||
}, | ||
"require-dev": { | ||
"phpstan/phpstan": "^2.0", | ||
... | ... |
src/Converter.php
0 → 100644
src/Converters/ApiConverter.php
0 → 100644
src/Converters/LibreofficeConverter.php
0 → 100644
src/Converters/PhpWordConverter.php
0 → 100644
src/Interfaces/ConverterInterface.php
0 → 100644
src/Utils/ConverterUtils.php
0 → 100644
vendor/phpoffice/math/.github/dependabot.yml
0 → 100644
vendor/phpoffice/math/.gitignore
0 → 100644
vendor/phpoffice/math/.php-cs-fixer.dist.php
0 → 100644
Veuillez vous inscrire ou vous se connecter pour commenter