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": "marc1706/fast-image-size",
03 "type": "library",
04 "description": "fast-image-size is a PHP library that does almost everything PHP's getimagesize() does but without the large overhead of downloading the complete file.",
05 "keywords": ["getimagesize", "fast", "PHP", "image", "size", "imagesize"],
06 "homepage": "https://www.m-a-styles.de",
07 "license": "MIT",
08 "authors": [
09 {
10 "name": "Marc Alexander",
11 "email": "admin@m-a-styles.de",
12 "homepage": "https://www.m-a-styles.de",
13 "role": "Developer"
14 }
15 ],
16 "require": {
17 "php": ">=5.3.0",
18 "ext-mbstring": "*"
19 },
20 "require-dev": {
21 "phpunit/phpunit": "^4.8"
22 },
23 "autoload": {
24 "psr-4": {
25 "FastImageSize\\": "lib"
26 }
27 },
28 "autoload-dev": {
29 "psr-4": {
30 "FastImageSize\\tests\\": "tests"
31 }
32 },
33 "extra": {
34 "branch-alias": {
35 "dev-master": "1.1.x-dev"
36 }
37 },
38 "config": {
39 "platform": {
40 "php": "5.4.7"
41 }
42 }
43 }
44