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": "psr/container",
03 "type": "library",
04 "description": "Common Container Interface (PHP FIG PSR-11)",
05 "keywords": ["psr", "psr-11", "container", "container-interop", "container-interface"],
06 "homepage": "https://github.com/php-fig/container",
07 "license": "MIT",
08 "authors": [
09 {
10 "name": "PHP-FIG",
11 "homepage": "https://www.php-fig.org/"
12 }
13 ],
14 "require": {
15 "php": ">=7.2.0"
16 },
17 "autoload": {
18 "psr-4": {
19 "Psr\\Container\\": "src/"
20 }
21 }
22 }
23