Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
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": "zendframework/zend-code",
03 "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
04 "license": "BSD-3-Clause",
05 "keywords": [
06 "zf",
07 "zendframework",
08 "code"
09 ],
10 "support": {
11 "docs": "https://docs.zendframework.com/zend-code/",
12 "issues": "https://github.com/zendframework/zend-code/issues",
13 "source": "https://github.com/zendframework/zend-code",
14 "rss": "https://github.com/zendframework/zend-code/releases.atom",
15 "chat": "https://zendframework-slack.herokuapp.com",
16 "forum": "https://discourse.zendframework.com/c/questions/components"
17 },
18 "require": {
19 "php": "^7.1",
20 "zendframework/zend-eventmanager": "^2.6 || ^3.0"
21 },
22 "require-dev": {
23 "ext-phar": "*",
24 "doctrine/annotations": "^1.7",
25 "phpunit/phpunit": "^7.5.16 || ^8.4",
26 "zendframework/zend-coding-standard": "^1.0",
27 "zendframework/zend-stdlib": "^2.7 || ^3.0"
28 },
29 "conflict": {
30 "phpspec/prophecy": "<1.9.0"
31 },
32 "suggest": {
33 "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
34 "zendframework/zend-stdlib": "Zend\\Stdlib component"
35 },
36 "autoload": {
37 "psr-4": {
38 "Zend\\Code\\": "src/"
39 }
40 },
41 "autoload-dev": {
42 "psr-4": {
43 "ZendTest\\Code\\": "test/"
44 }
45 },
46 "config": {
47 "sort-packages": true
48 },
49 "extra": {
50 "branch-alias": {
51 "dev-master": "3.4.x-dev",
52 "dev-develop": "3.5.x-dev",
53 "dev-dev-4.0": "4.0.x-dev"
54 }
55 },
56 "scripts": {
57 "check": [
58 "@cs-check",
59 "@test"
60 ],
61 "cs-check": "phpcs",
62 "cs-fix": "phpcbf",
63 "test": "phpunit --colors=always",
64 "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
65 }
66 }
67