-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.41 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
57
{
"name": "popphp/pop-form",
"description": "Pop Form Component for Pop PHP Framework",
"keywords": [
"forms",
"html forms",
"form generation",
"form validation",
"php",
"pop",
"pop php"
],
"homepage": "https://github.com/popphp/pop-form",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nick Sagona",
"email": "[email protected]",
"homepage": "https://www.popphp.org/"
}
],
"require": {
"php": ">=8.2.0",
"popphp/pop-acl": "^4.1.1",
"popphp/pop-dom": "^4.0.4",
"popphp/pop-filter": "^4.0.2",
"popphp/pop-utils": "^2.1.3",
"popphp/pop-validator": "^4.1.2"
},
"require-dev": {
"phpunit/phpunit": "^11.0.0",
"popphp/pop-db": "^6.5.11"
},
"suggest": {
"popphp/pop-db": "To use the dynamic field generation based on database table columns",
"popphp/pop-view": "To use render the form fields with a view",
"ext-simplexml": "For handling XML"
},
"autoload": {
"psr-4": {
"Pop\\Form\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pop\\Form\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "4.2.x-dev"
}
}
}