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/http-foundation",
03 "type": "library",
04 "description": "Symfony HttpFoundation 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-php54": "~1.0",
21 "symfony/polyfill-php55": "~1.0",
22 "symfony/polyfill-mbstring": "~1.1"
23 },
24 "require-dev": {
25 "symfony/expression-language": "~2.4|~3.0.0"
26 },
27 "autoload": {
28 "psr-4": { "Symfony\\Component\\HttpFoundation\\": "" },
29 "exclude-from-classmap": [
30 "/Tests/"
31 ]
32 },
33 "minimum-stability": "dev",
34 "extra": {
35 "branch-alias": {
36 "dev-master": "2.8-dev"
37 }
38 }
39 }
40