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. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
composer.json
01 {
02 "name": "twig/twig",
03 "type": "library",
04 "description": "Twig, the flexible, fast, and secure template language for PHP",
05 "keywords": ["templating"],
06 "homepage": "https://twig.symfony.com",
07 "license": "BSD-3-Clause",
08 "minimum-stability": "dev",
09 "authors": [
10 {
11 "name": "Fabien Potencier",
12 "email": "fabien@symfony.com",
13 "homepage": "http://fabien.potencier.org",
14 "role": "Lead Developer"
15 },
16 {
17 "name": "Twig Team",
18 "role": "Contributors"
19 },
20 {
21 "name": "Armin Ronacher",
22 "email": "armin.ronacher@active-4.com",
23 "role": "Project Founder"
24 }
25 ],
26 "require": {
27 "php": ">=7.1.3",
28 "symfony/polyfill-mbstring": "^1.3",
29 "symfony/polyfill-ctype": "^1.8",
30 "symfony/polyfill-php72": "^1.8"
31 },
32 "require-dev": {
33 "symfony/phpunit-bridge": "^5.4.9|^6.3",
34 "psr/container": "^1.0"
35 },
36 "autoload": {
37 "psr-0" : {
38 "Twig_" : "lib/"
39 },
40 "psr-4" : {
41 "Twig\\" : "src/"
42 }
43 },
44 "autoload-dev": {
45 "psr-4" : {
46 "Twig\\Tests\\" : "tests/"
47 }
48 },
49 "extra": {
50 "branch-alias": {
51 "dev-master": "2.16-dev"
52 }
53 }
54 }
55