mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-02 14:25:41 +08:00
84 lines
2.6 KiB
TypeScript
84 lines
2.6 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: '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: 'Developer Guide',
|
|
items: [
|
|
{ text: 'Get Started', link: '/en/develop/' },
|
|
{ text: 'Project Structure', link: '/en/develop/structure' },
|
|
{ text: 'PHP Source Modifications', link: '/en/develop/php-src-changes' },
|
|
],
|
|
},
|
|
{
|
|
text: 'Concepts',
|
|
items: [
|
|
{ text: 'Package Model', link: '/en/develop/package-model' },
|
|
{ text: 'Registry & Plugin System', link: '/en/develop/registry' },
|
|
{ text: 'Build Lifecycle', link: '/en/develop/build-lifecycle' },
|
|
],
|
|
},
|
|
{
|
|
text: 'Modules',
|
|
items: [
|
|
{ text: 'Doctor', link: '/en/develop/doctor-module' },
|
|
{ text: 'Source', link: '/en/develop/source-module' },
|
|
{ text: 'craft.yml', link: '/en/develop/craft-yml' },
|
|
{ text: 'Compilation Tools', link: '/en/develop/system-build-tools' },
|
|
],
|
|
},
|
|
{
|
|
text: 'Vendor Mode',
|
|
items: [
|
|
{ text: 'Introduction', link: '/en/develop/vendor-mode/' },
|
|
{ text: 'Writing Package Classes', link: '/en/develop/vendor-mode/package-classes' },
|
|
{ text: 'Annotations Reference', link: '/en/develop/vendor-mode/annotations' },
|
|
{ text: 'Dependency Injection', link: '/en/develop/vendor-mode/dependency-injection' },
|
|
{ text: 'Lifecycle Hooks', link: '/en/develop/vendor-mode/lifecycle-hooks' },
|
|
],
|
|
},
|
|
],
|
|
'/en/contributing/': [
|
|
{
|
|
text: 'Contributing',
|
|
items: [
|
|
{ text: 'Contributing Guide', link: '/en/contributing/' },
|
|
],
|
|
},
|
|
],
|
|
'/en/faq/': [
|
|
{
|
|
text: 'FAQ',
|
|
items: [
|
|
{ text: 'Frequently Asked Questions', link: '/en/faq/' },
|
|
],
|
|
},
|
|
],
|
|
};
|