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. |
|
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
composer.json
01 {
02 "name": "phpbb/phpbb",
03 "description": "phpBB Forum Software application",
04 "type": "project",
05 "keywords": ["phpbb", "forum"],
06 "homepage": "https://www.phpbb.com",
07 "license": "GPL-2.0-only",
08 "authors": [
09 {
10 "name": "phpBB Limited",
11 "email": "operations@phpbb.com",
12 "homepage": "https://www.phpbb.com/go/authors"
13 }
14 ],
15 "support": {
16 "issues": "https://tracker.phpbb.com",
17 "forum": "https://www.phpbb.com/community/",
18 "docs": "https://www.phpbb.com/support/docs/",
19 "irc": "irc://irc.libera.chat/phpbb",
20 "chat": "https://www.phpbb.com/support/chat/"
21 },
22 "scripts": {
23 "post-update-cmd": "echo 'You MUST manually modify the clean-vendor-dir target in build/build.xml when adding or upgrading dependencies.'"
24 },
25 "replace": {
26 "phpbb/phpbb-core": "self.version"
27 },
28 "require": {
29 "php": "^7.2 || ^8.0.0",
30 "ext-json": "*",
31 "ext-mbstring": "*",
32 "bantu/ini-get-wrapper": "~1.0",
33 "carlos-mg89/oauth": "^0.8.15",
34 "composer/package-versions-deprecated": "^1.11",
35 "google/recaptcha": "~1.1",
36 "guzzlehttp/guzzle": "~6.3",
37 "marc1706/fast-image-size": "^1.1",
38 "s9e/text-formatter": "^2.0",
39 "symfony/config": "~3.4",
40 "symfony/console": "~3.4",
41 "symfony/debug": "~3.4",
42 "symfony/dependency-injection": "~3.4",
43 "symfony/event-dispatcher": "~3.4",
44 "symfony/filesystem": "~3.4",
45 "symfony/finder": "~3.4",
46 "symfony/http-foundation": "~3.4",
47 "symfony/http-kernel": "~3.4",
48 "symfony/polyfill-intl-normalizer": "^1.23",
49 "symfony/polyfill-mbstring": "^1.23",
50 "symfony/polyfill-php72": "^1.23",
51 "symfony/process": "^3.4",
52 "symfony/proxy-manager-bridge": "~3.4",
53 "symfony/routing": "~3.4",
54 "symfony/twig-bridge": "~3.4",
55 "symfony/yaml": "~3.4",
56 "twig/twig": "^1.0 || ^2.0"
57 },
58 "require-dev": {
59 "fabpot/goutte": "~3.2",
60 "php-webdriver/webdriver": "~1.8",
61 "laravel/homestead": "~7.0",
62 "phing/phing": "~2.4",
63 "phpunit/dbunit": "~4.0",
64 "phpunit/phpunit": "^7.0",
65 "squizlabs/php_codesniffer": "~3.4",
66 "symfony/browser-kit": "~3.4",
67 "symfony/css-selector": "~3.4",
68 "symfony/dom-crawler": "~3.4"
69 },
70 "extra": {
71 "branch-alias": {
72 "dev-master": "3.3.x-dev"
73 }
74 },
75 "config": {
76 "platform": {
77 "php": "7.2"
78 },
79 "allow-plugins": {
80 "composer/installers": true
81 }
82 }
83 }
84