larafony / docs
Official documentation for Larafony Framework
Installs: 1
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/larafony/docs
Requires
- php: >=8.1
README
Official documentation for Larafony Framework - Modern PHP 8.5 framework built for clarity, not complexity.
Structure
larafony-docs/
├── getting-started/ # Introduction, structure, bootstrap
├── architecture/ # Container, config, auth, cache
├── http/ # Controllers, middleware, HTTP client
├── database/ # Schema builder, query builder, models
├── views/ # Blade templates, Inertia.js, validation
├── security/ # Encryption, sessions, cookies
├── communication/ # Mail
├── utilities/ # Logging, events
├── async/ # Queue, jobs, WebSockets
├── debugging/ # DebugBar, error handling
├── bridges/ # Third-party integrations
└── meta.json # Navigation structure and metadata
Usage
As Source of Truth
This repository serves as the single source of truth for all Larafony documentation. It's consumed by:
- larafony.com - Official documentation website
- larafony-mcp - MCP server for AI assistants
File Format
Each documentation file uses Markdown with YAML frontmatter:
--- title: "Page Title" description: "Brief description for SEO" --- # Page Title Content goes here...
Navigation Structure
The meta.json file defines the documentation structure:
{
"sections": [
{
"id": "section-id",
"title": "Section Title",
"icon": "bootstrap-icon-name",
"pages": [
{"file": "page.md", "title": "Page Title", "slug": "url-slug"}
]
}
]
}
Contributing
- Fork this repository
- Edit or add Markdown files
- Update
meta.jsonif adding new pages - Submit a pull request
License
MIT License. Larafony-docs is open-sourced software licensed under the MIT license.