-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 799 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 799 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
{
"name": "dotkernel/dot-controller-plugin-forms",
"type": "library",
"description": "DotKernel controller forms plugin for easy access to forms inside controllers",
"license": "MIT",
"authors": [
{
"name": "DotKernel Team",
"email": "team@dotkernel.com"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-servicemanager": "^3.21.0",
"dotkernel/dot-controller": "^3.4.0",
"dotkernel/dot-flashmessenger": "^3.0",
"dotkernel/dot-form": "^4.2.1"
},
"require-dev": {
"phpunit/phpunit": "^10.3.2",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Dot\\Controller\\Plugin\\Forms\\": "src/"
}
}
}