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": "guzzlehttp/promises",
03 "description": "Guzzle promises library",
04 "keywords": ["promise"],
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": "Tobias Nyholm",
19 "email": "tobias.nyholm@gmail.com",
20 "homepage": "https://github.com/Nyholm"
21 },
22 {
23 "name": "Tobias Schultze",
24 "email": "webmaster@tubo-world.de",
25 "homepage": "https://github.com/Tobion"
26 }
27 ],
28 "require": {
29 "php": ">=5.5"
30 },
31 "require-dev": {
32 "symfony/phpunit-bridge": "^4.4 || ^5.1"
33 },
34 "autoload": {
35 "psr-4": {
36 "GuzzleHttp\\Promise\\": "src/"
37 },
38 "files": ["src/functions_include.php"]
39 },
40 "autoload-dev": {
41 "psr-4": {
42 "GuzzleHttp\\Promise\\Tests\\": "tests/"
43 }
44 },
45 "scripts": {
46 "test": "vendor/bin/simple-phpunit",
47 "test-ci": "vendor/bin/simple-phpunit --coverage-text"
48 },
49 "config": {
50 "preferred-install": "dist",
51 "sort-packages": true
52 }
53 }
54