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/ringphp",
03 "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.",
04 "license": "MIT",
05 "authors": [
06 {
07 "name": "Michael Dowling",
08 "email": "mtdowling@gmail.com",
09 "homepage": "https://github.com/mtdowling"
10 }
11 ],
12 "require": {
13 "php": ">=5.4.0",
14 "guzzlehttp/streams": "~3.0",
15 "react/promise": "~2.0"
16 },
17 "require-dev": {
18 "ext-curl": "*",
19 "phpunit/phpunit": "~4.0"
20 },
21 "suggest": {
22 "ext-curl": "Guzzle will use specific adapters if cURL is present"
23 },
24 "autoload": {
25 "psr-4": {
26 "GuzzleHttp\\Ring\\": "src/"
27 }
28 },
29 "autoload-dev": {
30 "psr-4": {
31 "GuzzleHttp\\Tests\\Ring\\": "tests/"
32 }
33 },
34 "extra": {
35 "branch-alias": {
36 "dev-master": "1.1-dev"
37 }
38 }
39 }
40