-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1ec6c2
commit a0ee2b8
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule Minz
updated
19 files
+1 −1 | .github/workflows/ci.yml | |
+1 −1 | README.md | |
+1 −1 | docker/Dockerfile | |
+1 −1 | docs/getting_started.md | |
+5 −2 | docs/overview.md | |
+1 −1 | src/Csrf.php | |
+1 −1 | src/Database/Recordable.php | |
+328 −0 | src/Form.php | |
+32 −0 | src/Form/Check.php | |
+53 −0 | src/Form/Csrf.php | |
+74 −0 | src/Form/Field.php | |
+34 −0 | src/Request.php | |
+0 −1 | src/Translatable.php | |
+117 −0 | tests/FormTest.php | |
+57 −0 | tests/RequestTest.php | |
+14 −0 | tests/test_app/src/forms/FormWithBool.php | |
+22 −0 | tests/test_app/src/forms/FormWithCheck.php | |
+14 −0 | tests/test_app/src/forms/FormWithDatetime.php | |
+20 −0 | tests/test_app/src/forms/Rabbit.php |