-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
56 lines (56 loc) · 1.83 KB
/
composer.json
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
51
52
53
54
55
56
{
"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.1.0"
},
"require-dev": {
"joomla/test": "^3.0",
"illuminate/events": "^6.0|^7.0",
"illuminate/filesystem": "^6.0|^7.0",
"illuminate/view": "^6.0|^7.0",
"league/plates": "^3.0",
"mustache/mustache": "^2.3",
"phpunit/phpunit": "^9.5.28",
"symfony/templating": "^5.0",
"twig/twig": "^3.5.0",
"squizlabs/php_codesniffer": "^3.7.2",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phan/phan": "^5.4.2"
},
"conflict": {
"illuminate/view": "<6.0",
"league/plates": "<3.0",
"mustache/mustache": "<2.3",
"symfony/templating": "<3.4"
},
"suggest": {
"illuminate/view": "Install ^6.0|^7.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 ^2.3 if you are using the Mustache template engine.",
"symfony/templating": "Install ^3.4|^4.4|^5.0 if you are using Symfony's PHP template component.",
"twig/twig": "Install ^2.14.11|^3.3.8 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"
}
}
}