Files
static-php-cli/docs/.vitepress/sidebar.en.ts
2026-05-08 10:06:21 +08:00

86 lines
2.8 KiB
TypeScript

export default {
'/en/guide/': [
{
text: 'Getting Started',
items: [
{ text: 'Overview', link: '/en/guide/' },
{ text: 'Installation', link: '/en/guide/installation' },
{ text: 'First Build', link: '/en/guide/first-build' },
{ text: 'PHP SAPI Reference', link: '/en/guide/sapi-reference' },
{ text: 'CLI Reference', link: '/en/guide/cli-reference' },
{ text: 'Migrating from v2', link: '/en/guide/migrate-from-v2' },
],
},
{
text: 'Extensions',
items: [
{ text: 'Supported Extensions', link: '/en/guide/extensions' },
{ text: 'Extension Notes', link: '/en/guide/extension-notes' },
{ text: 'Build Command Generator', link: '/en/guide/cli-generator' },
],
},
{
text: 'Reference',
items: [
{ text: 'Environment Variables', link: '/en/guide/env-vars' },
{ text: 'Dependency Table', link: '/en/guide/deps-map' },
{ text: 'Troubleshooting', link: '/en/guide/troubleshooting' },
],
},
],
'/en/develop/': [
{
text: 'Overview',
items: [
{ text: 'Get Started', link: '/en/develop/' },
{ text: 'Project Structure', link: '/en/develop/structure' },
],
},
{
text: 'Configuration Reference',
items: [
{ text: 'Registry', link: '/en/develop/registry' },
{ text: 'Package Model', link: '/en/develop/package-model' },
{ text: 'Artifact Model', link: '/en/develop/artifact-model' },
{ text: 'craft.yml', link: '/en/develop/craft-yml' },
],
},
{
text: 'Build System',
items: [
{ text: 'Build Lifecycle', link: '/en/develop/build-lifecycle' },
{ text: 'Compilation Tools', link: '/en/develop/system-build-tools' },
{ text: 'Doctor', link: '/en/develop/doctor-module' },
{ text: 'PHP Source Modifications', link: '/en/develop/php-src-changes' },
],
},
{
text: 'Extending StaticPHP',
items: [
{ text: 'Introduction', link: '/en/develop/extending/' },
{ text: 'Writing Package Classes', link: '/en/develop/extending/package-classes' },
{ text: 'Annotations Reference', link: '/en/develop/extending/annotations' },
{ text: 'Lifecycle Hooks', link: '/en/develop/extending/lifecycle-hooks' },
{ text: 'Dependency Injection', link: '/en/develop/extending/dependency-injection' },
{ text: 'Custom Artifact', link: '/en/develop/extending/custom-artifact' },
],
},
],
'/en/contributing/': [
{
text: 'Contributing',
items: [
{ text: 'Contributing Guide', link: '/en/contributing/' },
],
},
],
'/en/faq/': [
{
text: 'FAQ',
items: [
{ text: 'Frequently Asked Questions', link: '/en/faq/' },
],
},
],
};