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
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from froschdesign/docs/switch-from-bookdown-to…
…-mkdocs [Docs] Switch from Bookdown to MkDocs configuration
- Loading branch information
Showing
5 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ | |
.*.un~ | ||
nbproject | ||
tmp/ | ||
doc/html/ | ||
zf-mkdoc-theme/ | ||
|
||
clover.xml | ||
composer.lock | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div class="container"> | ||
<div class="jumbotron"> | ||
<h1>zend-validator</h1> | ||
|
||
<p> | ||
The Zend\Validator component provides a set of commonly needed validators. | ||
</p> | ||
|
||
<pre><code class="language-bash">$ composer require zendframework/zend-validator</code></pre> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
docs_dir: doc/book | ||
site_dir: doc/html | ||
pages: | ||
- index.md | ||
- Intro: intro.md | ||
- Reference: | ||
- "Standard Validation Classes": set.md | ||
- Validators | ||
- Barcode: barcode.md | ||
- Between: between.md | ||
- Callback: callback.md | ||
- CreditCard: credit-card.md | ||
- Date: date.md | ||
- "Db\RecordExists and Db\NoRecordExists": db.md | ||
- Digits: digits.md | ||
- EmailAddress: email-address.md | ||
- "File Validation Classes": file.md | ||
- GreaterThan: greater-than.md | ||
- Hex: hex.md | ||
- Hostname: hostname.md | ||
- Iban: iban.md | ||
- Identical: identical.md | ||
- InArray: in-array.md | ||
- Ip: ip.md | ||
- Isbn: isbn.md | ||
- IsInstanceOf: isinstanceof.md | ||
- LessThan: less-than.md | ||
- NotEmpty: not-empty.md | ||
- Regex: regex.md | ||
- Sitemap: sitemap.md | ||
- Step: step.md | ||
- StringLength: string-length.md | ||
- Timezone: timezone.md | ||
- Uri: uri.md | ||
- "Validator Chains": validator-chains.md | ||
- "Writing Validators": writing-validators.md | ||
- "Validation Messages": validation-messages.md | ||
site_name: zend-validator | ||
site_description: zend-validator | ||
repo_url: 'https://github.com/zendframework/zend-validator' | ||
copyright: 'Copyright (c) 2016 <a href="http://www.zend.com/">Zend Technologies USA Inc.</a>' |