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": "symfony/console",
03 "type": "library",
04 "description": "Symfony Console Component",
05 "keywords": [],
06 "homepage": "https://symfony.com",
07 "license": "MIT",
08 "authors": [
09 {
10 "name": "Fabien Potencier",
11 "email": "fabien@symfony.com"
12 },
13 {
14 "name": "Symfony Community",
15 "homepage": "https://symfony.com/contributors"
16 }
17 ],
18 "require": {
19 "php": ">=5.3.9",
20 "symfony/polyfill-mbstring": "~1.0",
21 "symfony/debug": "~2.7,>=2.7.2|~3.0.0"
22 },
23 "require-dev": {
24 "symfony/event-dispatcher": "~2.1|~3.0.0",
25 "symfony/process": "~2.1|~3.0.0",
26 "psr/log": "~1.0"
27 },
28 "suggest": {
29 "symfony/event-dispatcher": "",
30 "symfony/process": "",
31 "psr/log": "For using the console logger"
32 },
33 "autoload": {
34 "psr-4": { "Symfony\\Component\\Console\\": "" },
35 "exclude-from-classmap": [
36 "/Tests/"
37 ]
38 },
39 "minimum-stability": "dev",
40 "extra": {
41 "branch-alias": {
42 "dev-master": "2.8-dev"
43 }
44 }
45 }
46