Verzeichnisstruktur phpBB-3.1.0
- Veröffentlicht
- 27.10.2014
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.3.3",
29 "lusitanian/oauth": "0.2.*",
30 "symfony/config": "2.3.*",
31 "symfony/console": "2.3.*",
32 "symfony/dependency-injection": "2.3.*",
33 "symfony/event-dispatcher": "2.3.*",
34 "symfony/http-kernel": "2.3.*",
35 "symfony/routing": "2.3.*",
36 "symfony/yaml": "2.3.*",
37 "twig/twig": "1.13.*"
38 },
39 "require-dev": {
40 "fabpot/goutte": "1.0.*",
41 "phpunit/dbunit": "1.3.*",
42 "phpunit/phpunit": "4.1.*",
43 "phing/phing": "2.4.*",
44 "sami/sami": "1.*",
45 "squizlabs/php_codesniffer": "1.*",
46 "symfony/browser-kit": "2.3.*",
47 "symfony/css-selector": "2.3.*",
48 "symfony/debug": "2.3.*",
49 "symfony/dom-crawler": "2.3.*",
50 "symfony/filesystem": "2.3.*",
51 "symfony/finder": "2.3.*",
52 "symfony/http-foundation": "2.3.*",
53 "symfony/process": "2.3.*"
54 }
55 }
56