欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

Symfony installer

程序员文章站 2022-05-07 09:20:22
...
跳至 [1] [全屏预览]
1、下载symfony.phar

#php -r "readfile('http://symfony.com/installer');" > symfony.phar

查看选项

#php symfony.phar

2、用 symfony.phar 来创建一个项目。这里我们打算做一个新闻聚合类网站,项目就叫 news 

#php symfony.phar new news  (最新symfony3.xx)

To base your project on a specific Symfony version, append the version
number at the end of the command:

#php symfony.phar new news 2.8  (使用2.8版本创建)
相关标签: Symfony installer