-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 812 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 812 Bytes
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
{
"name": "beastbytes/form-latte",
"description": "Integrates the Yii Framework Form package with view-latte Latte Template Renderer simplifying form creation",
"keywords": [
"yii3",
"form",
"latte",
"renderer"
],
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "BSD-3-Clause",
"require": {
"php": "^8.1",
"beastbytes/view-latte": "dev-master",
"yiisoft/form-model": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"vimeo/psalm": "^5.0",
"yiisoft/psr-dummy-provider": "^1.0",
"yiisoft/test-support": "^3.0"
},
"autoload": {
"psr-4": {
"BeastBytes\\View\\Latte\\Form\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BeastBytes\\View\\Latte\\Form\\Tests\\": "tests/"
}
}
}