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": "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 "name": "Elliot Chance",
17 "email": "elliotchance@gmail.com"
18 }
19 ],
20 "require": {
21 "php": ">=5.3.0"
22 },
23 "require-dev": {
24 "symfony/http-foundation": "~2.1",
25 "predis/predis": "0.8.*@dev",
26 "phpunit/phpunit": "3.7.*",
27 "squizlabs/php_codesniffer": "2.*"
28 },
29 "suggest": {
30 "symfony/http-foundation": "Allows using the Symfony Session storage backend.",
31 "predis/predis": "Allows using the Redis storage backend.",
32 "ext-openssl": "Allows for usage of secure connections with the stream-based HTTP client."
33 },
34 "autoload": {
35 "psr-0": {
36 "OAuth": "src",
37 "OAuth\\Unit": "tests"
38 }
39 },
40 "extra": {
41 "branch-alias": {
42 "dev-master": "0.1-dev"
43 }
44 }
45 }
46