Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
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. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
composer.json
01 {
02 "name": "s9e/text-formatter",
03 "version": "0.8.4",
04 "type": "library",
05 "description": "Multi-purpose text formatting and markup library. Plugins offer support for BBCodes, Markdown, emoticons, HTML, embedding media (YouTube, etc...), enhanced typography and more.",
06 "homepage": "https://github.com/s9e/TextFormatter/",
07 "keywords": ["bbcode","bbcodes","blog","censor","embed","emoji","emoticons","engine","forum","html","markdown","markup","media","parser","shortcodes"],
08 "license": "MIT",
09 "require": {
10 "php": ">=5.3.3",
11 "ext-dom": "*",
12 "ext-filter": "*",
13 "lib-pcre": ">=7.2"
14 },
15 "suggest": {
16 "ext-curl": "Improves the performance of the MediaEmbed plugin and some JavaScript minifiers",
17 "ext-intl": "Allows international URLs to be accepted by the URL filter",
18 "ext-json": "Enables the generation of a JavaScript parser",
19 "ext-mbstring": "Improves the performance of the PHP renderer",
20 "ext-tokenizer": "Improves the performance of the PHP renderer",
21 "ext-xsl": "Enables the XSLT renderer",
22 "ext-zlib": "Enables gzip compression when scraping content via the MediaEmbed plugin"
23 },
24 "autoload": {
25 "psr-4": {
26 "s9e\\TextFormatter\\": "src"
27 }
28 }
29 }