-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathmkdocs.yml
More file actions
50 lines (47 loc) · 1.56 KB
/
mkdocs.yml
File metadata and controls
50 lines (47 loc) · 1.56 KB
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
site_name: activerecord
site_dir: .docs
site_description: PHP implementation of Active Record
repo_name: php-activerecord/activerecord
repo_url: https://github.com/php-activerecord/activerecord
extra_css:
- custom.css
nav:
- Quick Start: quickstart.md
- Upgrading from 1.x: upgrade.md
- Conventions: conventions.md
- Basic CRUD operations: crud.md
- Finders: finders.md
- Finders (dynamic): findersdynamic.md
- Relationships:
- Overview: relationships.md
- has_one: hasone.md
- has_many: hasmany.md
- has_and_belongs_to_many: hasandbelongstomany.md
- Validations:
- Overview: validations.md
- validates_length_of: validateslengthof.md
- validates_presence_of: validatespresenceof.md
- validates_format_of: validatesformatof.md
- validates_inclusion_of: validatesinclusionof.md
- validates_exclusion_of: validatesexclusionof.md
- validates_uniqueness_of: validatesuniquenessof.md
- validates_numericality_of: validatesnumericalityof.md
- Callbacks: callbacks.md
- Static Checking: staticchecking.md
# Theme
theme:
name: 'material'
timeout: 0
logo: 'https://github.com/php-activerecord/activerecord/assets/773172/a105c4aa-054d-4468-a892-c51e7601766a'
favicon: 'https://github.com/php-activerecord/activerecord/assets/773172/a105c4aa-054d-4468-a892-c51e7601766a'
# Extensions
markdown_extensions:
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.highlight:
extend_pygments_lang:
- name: php
lang: php
options:
startinline: true