summaryrefslogtreecommitdiff
path: root/vendor/soundasleep/html2text/composer.json
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-21 10:51:24 +0300
committerAndrew Dolgov <[email protected]>2023-10-21 10:51:24 +0300
commit03e956132d4a4b880d4e4533aeab725b0b2b5b52 (patch)
treece23379887ece400212767f527afcba8366f018a /vendor/soundasleep/html2text/composer.json
parent2b61052e8709283d89997e351173bcb43a3c2c61 (diff)
switch to html2text() instead of strip_tags() when preparing FTS index
Diffstat (limited to 'vendor/soundasleep/html2text/composer.json')
-rw-r--r--vendor/soundasleep/html2text/composer.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/vendor/soundasleep/html2text/composer.json b/vendor/soundasleep/html2text/composer.json
new file mode 100644
index 000000000..fb662c18a
--- /dev/null
+++ b/vendor/soundasleep/html2text/composer.json
@@ -0,0 +1,32 @@
+{
+ "name": "soundasleep/html2text",
+ "description": "A PHP script to convert HTML into a plain text format",
+ "type": "library",
+ "keywords": [ "php", "html", "text", "email" ],
+ "homepage": "https://github.com/soundasleep/html2text",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Jevon Wright",
+ "homepage": "https://jevon.org",
+ "role": "Developer"
+ }
+ ],
+ "autoload": {
+ "psr-4": {
+ "Soundasleep\\": "src"
+ }
+ },
+ "support": {
+ "email": "[email protected]"
+ },
+ "require": {
+ "php": "^7.3|^8.0",
+ "ext-dom": "*",
+ "ext-libxml": "*"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.0|^8.0|^9.0",
+ "phpstan/phpstan": "^1.9"
+ }
+}