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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

composer.json

Zuletzt modifiziert: 02.04.2025, 15:02 - Dateigröße: 1.21 KiB


01  {
02      "name": "google/recaptcha",
03      "description": "Client library for reCAPTCHA, a free service that protects websites from spam and abuse.",
04      "type": "library",
05      "keywords": ["recaptcha", "captcha", "spam", "abuse"],
06      "homepage": "https://www.google.com/recaptcha/",
07      "license": "BSD-3-Clause",
08      "support": {
09          "forum": "https://groups.google.com/forum/#!forum/recaptcha",
10          "source": "https://github.com/google/recaptcha"
11      },
12      "require": {
13          "php": ">=5.5"
14      },
15      "require-dev": {
16          "phpunit/phpunit": "^4.8.36|^5.7.27|^6.59|^7.5.11",
17          "friendsofphp/php-cs-fixer": "^2.2.20|^2.15",
18          "php-coveralls/php-coveralls": "^2.1"
19      },
20      "autoload": {
21          "psr-4": {
22              "ReCaptcha\\": "src/ReCaptcha"
23          }
24      },
25      "extra": {
26          "branch-alias": {
27              "dev-master": "1.2.x-dev"
28          }
29      },
30      "scripts": {
31          "lint": "vendor/bin/php-cs-fixer -vvv fix --using-cache=no --dry-run .",
32          "lint-fix": "vendor/bin/php-cs-fixer -vvv fix --using-cache=no .",
33          "test": "vendor/bin/phpunit --colors=always",
34          "serve-examples": "@php -S localhost:8080 -t examples"
35      },
36      "config": {
37          "process-timeout": 0
38      }
39  }
40