是Symfony / Composer的新手;我按照推荐的Symfony directory structure创建了一个演示应用程序,最后得到了4个文件夹..
app/ The application configuration, templates and translations.
src/ The project's PHP code.
vendor/ The third-party dependencies.
web/ The web root directory.
现在我需要将应用程序发送到客户端,将其整合为他们网站的片段(在他们现有的代码中)。所以我只需要发送web文件夹而不是我所有的源文件。
我的问题是;在Symfony有什么办法我只发送它们的web文件夹文件仍然应用程序运行应该吗?或者Symfony依赖于vendor/
,src/
和app/
文件夹?
我不想将所有自述文件,CHANGELOG文件发送到这些文件夹中,还有一些部分仅用于开发,如PHPunit ..
任何想法都会受到赞赏,因为我是Symfony / composer工作流程的新手:)