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": "paragonie/random_compat",
03 "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
04 "keywords": [
05 "csprng",
06 "random",
07 "pseudorandom"
08 ],
09 "license": "MIT",
10 "type": "library",
11 "authors": [
12 {
13 "name": "Paragon Initiative Enterprises",
14 "email": "security@paragonie.com",
15 "homepage": "https://paragonie.com"
16 }
17 ],
18 "support": {
19 "issues": "https://github.com/paragonie/random_compat/issues",
20 "email": "info@paragonie.com",
21 "source": "https://github.com/paragonie/random_compat"
22 },
23 "require": {
24 "php": ">=5.2.0"
25 },
26 "require-dev": {
27 "phpunit/phpunit": "4.*|5.*"
28 },
29 "suggest": {
30 "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
31 },
32 "autoload": {
33 "files": ["lib/random.php"]
34 }
35 }
36