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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

composer.json

Zuletzt modifiziert: 02.04.2025, 15:02 - Dateigröße: 2.06 KiB


01  {
02      "name": "guzzlehttp/psr7",
03      "description": "PSR-7 message implementation that also provides common utility methods",
04      "keywords": ["request", "response", "message", "stream", "http", "uri", "url", "psr-7"],
05      "license": "MIT",
06      "authors": [
07          {
08              "name": "Graham Campbell",
09              "email": "hello@gjcampbell.co.uk",
10              "homepage": "https://github.com/GrahamCampbell"
11          },
12          {
13              "name": "Michael Dowling",
14              "email": "mtdowling@gmail.com",
15              "homepage": "https://github.com/mtdowling"
16          },
17          {
18              "name": "George Mponos",
19              "email": "gmponos@gmail.com",
20              "homepage": "https://github.com/gmponos"
21          },
22          {
23              "name": "Tobias Nyholm",
24              "email": "tobias.nyholm@gmail.com",
25              "homepage": "https://github.com/Nyholm"
26          },
27          {
28              "name": "Márk Sági-Kazár",
29              "email": "mark.sagikazar@gmail.com",
30              "homepage": "https://github.com/sagikazarmark"
31          },
32          {
33              "name": "Tobias Schultze",
34              "email": "webmaster@tubo-world.de",
35              "homepage": "https://github.com/Tobion"
36          }
37      ],
38      "require": {
39          "php": ">=5.4.0",
40          "psr/http-message": "~1.0",
41          "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
42      },
43      "require-dev": {
44          "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10",
45          "ext-zlib": "*"
46      },
47      "provide": {
48          "psr/http-message-implementation": "1.0"
49      },
50      "suggest": {
51          "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
52      },
53      "autoload": {
54          "psr-4": {
55              "GuzzleHttp\\Psr7\\": "src/"
56          },
57          "files": ["src/functions_include.php"]
58      },
59      "autoload-dev": {
60          "psr-4": {
61              "GuzzleHttp\\Tests\\Psr7\\": "tests/"
62          }
63      },
64      "config": {
65          "preferred-install": "dist",
66          "sort-packages": true,
67          "allow-plugins": {
68              "bamarni/composer-bin-plugin": true
69          }
70      }
71  }
72