Skip to content

Commit

Permalink
installing a specific version of laravel
Browse files Browse the repository at this point in the history
  • Loading branch information
curder committed Nov 21, 2023
1 parent 76c9884 commit fd270dc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ function sidebarProgrammingLanguage()
{text: "@each 渲染集合视图", link: "/programming-language/php/laravel/blade/each"},
{text: "Vite 静态资源替换", link: "/programming-language/php/laravel/blade/vite"},
{text: "pint 代码风格", link: "/programming-language/php/laravel/code-style/pint"},
{text: "安装指定版本 Laravel", link: "/programming-language/php/laravel/installing-a-specific-version-of-laravel"},
]
}
];
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 安装指定版本 Laravel

使用下面的命令可以安装指定版本的 Laravel 。

```bash
composer create-project laravel/laravel="8.6.*" YourAwesomeProjectName
```

0 comments on commit fd270dc

Please sign in to comment.