This repository has been archived by the owner on Jan 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 136
/
mkdocs.yml
64 lines (64 loc) · 2.94 KB
/
mkdocs.yml
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
58
59
60
61
62
63
64
docs_dir: docs/book
site_dir: docs/html
nav:
- Home: index.md
- Introduction: intro.md
- Reference:
- "Validator Chains": validator-chains.md
- "Writing Validators": writing-validators.md
- "Validation Messages": messages.md
- "Standard Validation Classes": set.md
- Validators:
- Barcode: validators/barcode.md
- Between: validators/between.md
- Callback: validators/callback.md
- CreditCard: validators/credit-card.md
- Date: validators/date.md
- "Db\\RecordExists and Db\\NoRecordExists": validators/db.md
- Digits: validators/digits.md
- EmailAddress: validators/email-address.md
- Explode: validators/explode.md
- GreaterThan: validators/greater-than.md
- Hex: validators/hex.md
- Hostname: validators/hostname.md
- Iban: validators/iban.md
- Identical: validators/identical.md
- InArray: validators/in-array.md
- Ip: validators/ip.md
- Isbn: validators/isbn.md
- IsCountable: validators/is-countable.md
- IsInstanceOf: validators/isinstanceof.md
- LessThan: validators/less-than.md
- NotEmpty: validators/not-empty.md
- Regex: validators/regex.md
- Sitemap: validators/sitemap.md
- Step: validators/step.md
- StringLength: validators/string-length.md
- Timezone: validators/timezone.md
- UndisclosedPassword: validators/undisclosed-password.md
- Uri: validators/uri.md
- Uuid: validators/uuid.md
- "File Validators":
- Introduction: validators/file/intro.md
- Count: validators/file/count.md
- Crc32: validators/file/crc32.md
- ExcludeExtension: validators/file/exclude-extension.md
- ExcludeMimeType: validators/file/exclude-mime-type.md
- Exists: validators/file/exists.md
- Extension: validators/file/extension.md
- FilesSize: validators/file/files-size.md
- Hash: validators/file/hash.md
- ImageSize: validators/file/image-size.md
- IsCompressed: validators/file/is-compressed.md
- IsImage: validators/file/is-image.md
- Md5: validators/file/md5.md
- MimeType: validators/file/mime-type.md
- NotExists: validators/file/not-exists.md
- Sha1: validators/file/sha1.md
- Size: validators/file/size.md
- Upload: validators/file/upload.md
- UploadFile: validators/file/upload-file.md
- WordCount: validators/file/word-count.md
site_name: zend-validator
site_description: "Validation classes for a wide range of domains, and the ability to chain validators to create complex validation criteria."
repo_url: 'https://github.com/zendframework/zend-validator'