Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

composer.json

Zuletzt modifiziert: 02.04.2025, 15:02 - Dateigröße: 1.55 KiB


01  {
02      "name": "s9e/text-formatter",
03      "type": "library",
04      "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.",
05      "homepage": "https://github.com/s9e/TextFormatter/",
06      "keywords": ["bbcode","bbcodes","blog","censor","embed","emoji","emoticons","engine","forum","html","markdown","markup","media","parser","shortcodes"],
07      "license": "MIT",
08      "require": {
09          "php":        ">=7.1",
10          "ext-dom":    "*",
11          "ext-filter": "*",
12          "lib-pcre":   ">=8.13",
13   
14          "s9e/regexp-builder": "^1.4",
15          "s9e/sweetdom":       "^2.0"
16      },
17      "require-dev": {
18          "code-lts/doctum":       "*",
19          "matthiasmullie/minify": "*",
20          "phpunit/phpunit":       "*"
21      },
22      "suggest": {
23          "ext-curl":      "Improves the performance of the MediaEmbed plugin and some JavaScript minifiers",
24          "ext-intl":      "Allows international URLs to be accepted by the URL filter",
25          "ext-json":      "Enables the generation of a JavaScript parser",
26          "ext-mbstring":  "Improves the performance of the PHP renderer",
27          "ext-tokenizer": "Improves the performance of the PHP renderer",
28          "ext-xsl":       "Enables the XSLT renderer",
29          "ext-zlib":      "Enables gzip compression when scraping content via the MediaEmbed plugin"
30      },
31      "autoload": {
32          "psr-4": {
33              "s9e\\TextFormatter\\": "src"
34          }
35      },
36      "autoload-dev": {
37          "psr-4": {
38              "s9e\\TextFormatter\\Tests\\": "tests"
39          }
40      },
41      "scripts": {
42          "post-update-cmd": "php scripts/patchReadme.php"
43      },
44      "extra": {
45          "version": "2.11.5"
46      }
47  }
48