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": "guzzlehttp/guzzle",
03 "type": "library",
04 "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients",
05 "keywords": ["framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
06 "homepage": "http://guzzlephp.org/",
07 "license": "MIT",
08 "authors": [
09 {
10 "name": "Michael Dowling",
11 "email": "mtdowling@gmail.com",
12 "homepage": "https://github.com/mtdowling"
13 }
14 ],
15 "require": {
16 "php": ">=5.4.0",
17 "guzzlehttp/ringphp": "^1.1"
18 },
19 "require-dev": {
20 "ext-curl": "*",
21 "phpunit/phpunit": "^4.0"
22 },
23 "autoload": {
24 "psr-4": {
25 "GuzzleHttp\\": "src/"
26 }
27 },
28 "autoload-dev": {
29 "psr-4": {
30 "GuzzleHttp\\Tests\\": "tests/"
31 }
32 }
33 }
34