Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
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": "google/recaptcha",
03 "description": "Client library for reCAPTCHA, a free service that protect websites from spam and abuse.",
04 "type": "library",
05 "keywords": ["recaptcha", "captcha", "spam", "abuse"],
06 "homepage": "http://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.3.2"
14 },
15 "require-dev": {
16 "phpunit/phpunit": "4.5.*"
17 },
18 "autoload": {
19 "psr-4": {
20 "ReCaptcha\\": "src/ReCaptcha"
21 }
22 },
23 "extra": {
24 "branch-alias": {
25 "dev-master": "1.1.x-dev"
26 }
27 }
28 }
29