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.34 KiB


01  {
02      "name": "guzzlehttp/guzzle",
03      "type": "library",
04      "description": "Guzzle is a PHP HTTP client library",
05      "keywords": [
06          "framework",
07          "http",
08          "rest",
09          "web service",
10          "curl",
11          "client",
12          "HTTP client"
13      ],
14      "homepage": "http://guzzlephp.org/",
15      "license": "MIT",
16      "authors": [
17          {
18              "name": "Graham Campbell",
19              "email": "hello@gjcampbell.co.uk",
20              "homepage": "https://github.com/GrahamCampbell"
21          },
22          {
23              "name": "Michael Dowling",
24              "email": "mtdowling@gmail.com",
25              "homepage": "https://github.com/mtdowling"
26          },
27          {
28              "name": "Jeremy Lindblom",
29              "email": "jeremeamia@gmail.com",
30              "homepage": "https://github.com/jeremeamia"
31          },
32          {
33              "name": "George Mponos",
34              "email": "gmponos@gmail.com",
35              "homepage": "https://github.com/gmponos"
36          },
37          {
38              "name": "Tobias Nyholm",
39              "email": "tobias.nyholm@gmail.com",
40              "homepage": "https://github.com/Nyholm"
41          },
42          {
43              "name": "Márk Sági-Kazár",
44              "email": "mark.sagikazar@gmail.com",
45              "homepage": "https://github.com/sagikazarmark"
46          },
47          {
48              "name": "Tobias Schultze",
49              "email": "webmaster@tubo-world.de",
50              "homepage": "https://github.com/Tobion"
51          }
52      ],
53      "require": {
54          "php": ">=5.5",
55          "ext-json": "*",
56          "symfony/polyfill-intl-idn": "^1.17",
57          "guzzlehttp/promises": "^1.0",
58          "guzzlehttp/psr7": "^1.9"
59      },
60      "require-dev": {
61          "ext-curl": "*",
62          "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
63          "psr/log": "^1.1"
64      },
65      "suggest": {
66          "psr/log": "Required for using the Log middleware"
67      },
68      "config": {
69          "sort-packages": true,
70          "allow-plugins": {
71              "bamarni/composer-bin-plugin": true
72          }
73      },
74      "extra": {
75          "branch-alias": {
76              "dev-master": "6.5-dev"
77          }
78      },
79      "autoload": {
80          "psr-4": {
81              "GuzzleHttp\\": "src/"
82          },
83          "files": [
84              "src/functions_include.php"
85          ]
86      },
87      "autoload-dev": {
88          "psr-4": {
89              "GuzzleHttp\\Tests\\": "tests/"
90          }
91      }
92  }
93