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/routing",
03 "type": "library",
04 "description": "Symfony Routing Component",
05 "keywords": ["routing", "router", "URL", "URI"],
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 },
21 "require-dev": {
22 "symfony/config": "~2.7|~3.0.0",
23 "symfony/http-foundation": "~2.3|~3.0.0",
24 "symfony/yaml": "~2.0,>=2.0.5|~3.0.0",
25 "symfony/expression-language": "~2.4|~3.0.0",
26 "doctrine/annotations": "~1.0",
27 "doctrine/common": "~2.2",
28 "psr/log": "~1.0"
29 },
30 "conflict": {
31 "symfony/config": "<2.7"
32 },
33 "suggest": {
34 "symfony/http-foundation": "For using a Symfony Request object",
35 "symfony/config": "For using the all-in-one router or any loader",
36 "symfony/yaml": "For using the YAML loader",
37 "symfony/expression-language": "For using expression matching",
38 "doctrine/annotations": "For using the annotation loader",
39 "symfony/dependency-injection": "For loading routes from a service"
40 },
41 "autoload": {
42 "psr-4": { "Symfony\\Component\\Routing\\": "" },
43 "exclude-from-classmap": [
44 "/Tests/"
45 ]
46 },
47 "minimum-stability": "dev",
48 "extra": {
49 "branch-alias": {
50 "dev-master": "2.8-dev"
51 }
52 }
53 }
54