-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
49 lines (48 loc) · 1.64 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
48
49
{
"name": "s9e/text-formatter",
"type": "library",
"description": "Multi-purpose text formatting and markup library. Plugins offer support for BBCodes, Markdown, emoticons, HTML, embedding third-party media (YouTube, etc...), enhanced typography and more.",
"homepage": "https://github.com/s9e/TextFormatter/",
"keywords": ["bbcode","bbcodes","blog","censor","embed","emoji","emoticons","engine","forum","html","markdown","markup","media","parser","shortcodes"],
"license": "MIT",
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-filter": "*",
"lib-pcre": ">=8.13",
"s9e/regexp-builder": "^1.4",
"s9e/sweetdom": "^3.4"
},
"require-dev": {
"code-lts/doctum": "*",
"matthiasmullie/minify": "*",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.52"
},
"suggest": {
"ext-curl": "Improves the performance of the MediaEmbed plugin and some JavaScript minifiers",
"ext-intl": "Allows international URLs to be accepted by the URL filter",
"ext-json": "Enables the generation of a JavaScript parser",
"ext-mbstring": "Improves the performance of the PHP renderer",
"ext-tokenizer": "Improves the performance of the PHP renderer",
"ext-xsl": "Enables the XSLT renderer",
"ext-zlib": "Enables gzip compression when scraping content via the MediaEmbed plugin"
},
"autoload": {
"psr-4": {
"s9e\\TextFormatter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"s9e\\TextFormatter\\Tests\\": "tests"
}
},
"scripts": {
"post-update-cmd": "php scripts/patchReadme.php",
"test": "phpunit --exclude-group ''"
},
"extra": {
"version": "2.19.0-dev"
}
}