Verzeichnisstruktur phpBB-3.1.0
- Veröffentlicht
- 27.10.2014
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": "lusitanian/oauth",
03 "description": "PHP 5.3+ oAuth 1/2 Library",
04 "keywords": ["oauth", "authentication", "authorization", "security"],
05 "license": "MIT",
06 "authors": [
07 {
08 "name": "David Desberg",
09 "email": "david@daviddesberg.com"
10 },
11 {
12 "name": "Pieter Hordijk",
13 "email": "info@pieterhordijk.com"
14 }
15 ],
16 "require": {
17 "php": ">=5.3.0"
18 },
19 "require-dev": {
20 "symfony/http-foundation": "~2.1",
21 "predis/predis": "0.8.*@dev",
22 "phpunit/phpunit": "3.7.*"
23 },
24 "suggest": {
25 "symfony/http-foundation": "Allows using the Symfony Session storage backend.",
26 "predis/predis": "Allows using the Redis storage backend."
27 },
28 "autoload": {
29 "psr-0": {
30 "OAuth": "src",
31 "OAuth\\Unit": "tests"
32 }
33 },
34 "extra": {
35 "branch-alias": {
36 "dev-master": "0.1-dev"
37 }
38 }
39 }
40