-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.5 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.5 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
51
52
53
54
55
56
57
{
"name": "beastbytes/view-latte",
"description": "Yii Framework Latte Template Renderer",
"keywords": [
"yii3",
"latte",
"renderer"
],
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "BSD-3-Clause",
"require": {
"php": "^8.1",
"beastbytes/latte-use-extension": "dev-master",
"latte/latte": "dev-master",
"psr/container": "^2.0",
"yiisoft/router": "^4.0",
"yiisoft/view": "10 - 12"
},
"require-dev": {
"httpsoft/http-message": "^1.0",
"phpunit/phpunit": "^10.0",
"vimeo/psalm": "^5.0",
"yiisoft/aliases": "^3.0",
"yiisoft/cache-file": "^3.0",
"yiisoft/dummy-provider": "^1.0",
"yiisoft/router-fastroute": "4.0",
"yiisoft/psr-dummy-provider": "^1.0",
"yiisoft/test-support": "^3.0",
"yiisoft/translator": "^3.0"
},
"autoload": {
"psr-4": {
"BeastBytes\\View\\Latte\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BeastBytes\\View\\Latte\\Tests\\": "tests/"
}
},
"extra": {
"config-plugin-options": {
"source-directory": "config"
},
"config-plugin": {
"di-web": "di-web.php",
"params-web": "params-web.php"
}
},
"suggest": {
"beastbytes/forn-latte": "Integrates the Yii Framework Form package simplifing form creation",
"beastbytes/yii-dataview-latte": "Integrates the Yii Framework DataView package with view-latte Latte Template Renderer",
"beastbytes/yii-tracy": "Integrates the Tracy Debugging tool with Yii"
}
}