This repository was archived by the owner on Apr 22, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.65 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "joomla/renderer",
"type": "joomla-package",
"description": "Joomla Renderer Package",
"keywords": ["joomla", "framework", "renderer"],
"homepage": "https://github.com/joomla-framework/renderer",
"license": "LGPL-2.1-or-later",
"require": {
"php": "^8.3.0"
},
"require-dev": {
"joomla/test": "^4.0",
"illuminate/events": "^12.20.0",
"illuminate/filesystem": "^12.20.0",
"illuminate/view": "^12.20.0",
"league/plates": "^3.0",
"mustache/mustache": "^3.0",
"phpunit/phpunit": "^12.2.7",
"symfony/templating": "^6.4",
"twig/twig": "^3.19.0",
"squizlabs/php_codesniffer": "^3.7.2",
"phpstan/phpstan": "^2.1.17",
"phpstan/phpstan-deprecation-rules": "^2.0.3"
},
"suggest": {
"illuminate/view": "Install ^12.0 if you are using Laravel's Blade template engine.",
"league/plates": "Install ^3.0 if you are using the Plates template engine.",
"mustache/mustache": "Install ^3.0 if you are using the Mustache template engine.",
"symfony/templating": "Install ^6.4 if you are using Symfony's PHP template component.",
"twig/twig": "Install ^3.19.0 if you are using the Twig template engine."
},
"autoload": {
"psr-4": {
"Joomla\\Renderer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Renderer\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.0-dev",
"dev-3.x-dev": "3.0-dev",
"dev-4.x-dev": "4.0-dev"
}
}
}