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