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": "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",
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 "wiki": "https://wiki.phpbb.com",
19 "irc": "irc://irc.freenode.org/phpbb"
20 },
21 "scripts": {
22 "post-update-cmd": "echo 'You MUST manually modify the clean-vendor-dir target in build/build.xml when adding or upgrading dependencies.'"
23 },
24 "replace": {
25 "phpbb/phpbb-core": "self.version"
26 },
27 "require": {
28 "php": ">=5.4",
29 "bantu/ini-get-wrapper": "1.0.*",
30 "google/recaptcha": "~1.1",
31 "guzzlehttp/guzzle": "~5.3",
32 "lusitanian/oauth": "^0.8.1",
33 "marc1706/fast-image-size": "^1.1",
34 "paragonie/random_compat": "^1.4",
35 "patchwork/utf8": "^1.1",
36 "s9e/text-formatter": "~0.8.0",
37 "symfony/config": "^2.8",
38 "symfony/console": "^2.8",
39 "symfony/debug": "^2.8",
40 "symfony/dependency-injection": "^2.8",
41 "symfony/event-dispatcher": "^2.8",
42 "symfony/filesystem": "^2.8",
43 "symfony/finder": "^2.8",
44 "symfony/http-foundation": "^2.8",
45 "symfony/http-kernel": "^2.8",
46 "symfony/proxy-manager-bridge": "^2.8",
47 "symfony/routing": "^2.8",
48 "symfony/twig-bridge": "^2.8",
49 "symfony/yaml": "^2.8",
50 "twig/twig": "^1.0,<1.25"
51 },
52 "require-dev": {
53 "fabpot/goutte": "~2.0",
54 "facebook/webdriver": "~1.1",
55 "laravel/homestead": "~2.2",
56 "phing/phing": "2.4.*",
57 "phpunit/dbunit": "1.3.*",
58 "phpunit/phpunit": "^4.1",
59 "sami/sami": "1.*",
60 "squizlabs/php_codesniffer": "2.*",
61 "symfony/browser-kit": "^2.8",
62 "symfony/css-selector": "^2.8",
63 "symfony/dom-crawler": "^2.8"
64 },
65 "extra": {
66 "branch-alias": {
67 "dev-master": "3.2.x-dev"
68 }
69 },
70 "config": {
71 "platform": {
72 "php": "5.4"
73 }
74 }
75 }
76