Verzeichnisstruktur phpBB-3.3.16
- Veröffentlicht
- 27.04.2026
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": "carlos-mg89/oauth",
03 "type": "library",
04 "description": "PHP 7.2 oAuth 1/2 Library",
05 "keywords": ["oauth", "authentication", "authorization", "security"],
06 "license": "MIT",
07 "authors": [
08 {
09 "name": "Carlos Martínez Gadea",
10 "email": "carlosmartinezgadea@gmail.com"
11 }
12 ],
13 "scripts" : {
14 "tests" : [
15 "./vendor/bin/phpunit --color=always"
16 ],
17 "check" : [
18 "./vendor/bin/php-cs-fixer fix --ansi --dry-run --diff",
19 "./vendor/bin/phpunit --color=always"
20 ],
21 "fix": [
22 "./vendor/bin/php-cs-fixer fix --ansi"
23 ]
24 },
25 "replace": {
26 "lusitanian/oauth": "~0.3"
27 },
28 "require": {
29 "php": "^7.2 || ^8.0"
30 },
31 "require-dev": {
32 "ext-dom": "*",
33 "ext-curl": "*",
34 "ext-json": "*",
35 "symfony/http-foundation": "~2.1",
36 "predis/predis": "0.8.*@dev",
37 "squizlabs/php_codesniffer": "^3.5",
38 "symfony/var-dumper": "^5.1",
39 "symfony/finder": "^5.1",
40 "phpunit/phpunit": "^8.5",
41 "friendsofphp/php-cs-fixer": "^3.0"
42 },
43 "suggest": {
44 "symfony/http-foundation": "Allows using the Symfony Session storage backend.",
45 "predis/predis": "Allows using the Redis storage backend.",
46 "ext-openssl": "Allows for usage of secure connections with the stream-based HTTP client."
47 },
48 "autoload": {
49 "psr-4": {
50 "OAuth\\": "src/OAuth"
51 }
52 },
53 "autoload-dev": {
54 "psr-4": {
55 "OAuthTest\\Unit\\": "tests/Unit",
56 "OAuthTest\\Mocks\\": "tests/Mocks"
57 }
58 },
59
60 "extra": {
61 "branch-alias": {
62 "dev-master": "0.1-dev"
63 }
64 }
65 }
66