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": "patchwork/utf8",
03 "type": "library",
04 "description": "Portable and performant UTF-8, Unicode and Grapheme Clusters for PHP",
05 "keywords": ["utf8","utf-8","unicode","i18n","grapheme"],
06 "homepage": "https://github.com/tchwork/utf8",
07 "license": "(Apache-2.0 or GPL-2.0)",
08 "authors": [
09 {
10 "name": "Nicolas Grekas",
11 "email": "p@tchwork.com"
12 }
13 ],
14 "require": {
15 "php": ">=5.3.0",
16 "lib-pcre": ">=7.3"
17 },
18 "suggest": {
19 "ext-wfio": "Use WFIO for UTF-8 filesystem access on Windows",
20 "ext-intl": "Use Intl for best performance",
21 "ext-iconv": "Use iconv for best performance",
22 "ext-mbstring": "Use Mbstring for best performance"
23 },
24 "autoload": {
25 "psr-4": {"Patchwork\\": "src/Patchwork/"},
26 "classmap": ["src/Normalizer.php"]
27 },
28 "autoload-dev": {
29 "files": ["tests/bootstrap.php"]
30 },
31 "extra": {
32 "branch-alias": {
33 "dev-master": "1.3-dev"
34 }
35 }
36 }
37