本文實例講述了Symfony2安裝第三方Bundles的方法。分享給大家供大家參考,具體如下:
大多數的Bundles都提了安裝的介紹,下面來介紹基本的安裝步驟:
一、添加composer依賴關系
在symfony裡,用composer來管理依賴關系
1.找到Bundle的包的名稱
在包的README裡一般都告訴了我們它的名稱,如果沒有,可以在https://packagist.org網站裡搜索到
2.通過composer來安裝Bundle
知道了bundle的包名之後,我們可以通過composer來安裝它
$ composer require codeguy/upload
codeguy/upload是一個上傳文件的bundle,在上一章《Symfony2使用第三方庫Upload制作圖片上傳實例詳解》中我們使用到。
執行上面的指令,composer會給你的項目選擇一個最好版本的bundle,把它添加到composer.json中,並將bundle下載到vendor/目錄下。如果你想要下載一個指定的版本,在bundle的包名後增加:版本號
二、注冊Bundle
現在,第三方的bundle已經安裝到你的symfony項目中了,在vendor/目錄下。此時我們需要在app/AppKernel.php裡注冊安裝好的bundle
例如DoctrineFixturesBundle:
class AppKernel extends Kernel { public function registerBundles() { $bundles = array( //...在這裡注冊 new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(), ); } //... }
三、配置Bundle
有的包需要一些額外的配置在 app/config/config.yml文件裡。包的文檔會告訴我們關於怎樣配置,也可以通過指令來參考包的配置
$ app/console config:dump-reference
例如TwigBundle:
$ app/console config:dump-reference TwigBundle
會得到如下的提示
# Default configuration for "TwigBundle" twig: exception_controller: 'twig.controller.exception:showAction' # Deprecated since 2.6, to be removed in 3.0. Use twig.form_themes instead form: resources: # Default: - form_div_layout.html.twig # Example: - MyBundle::form.html.twig form_themes: # Default: - form_div_layout.html.twig # Example: - MyBundle::form.html.twig globals: # Examples: foo: "@bar" pi: 3.14 # Prototype key: id: ~ type: ~ value: ~ autoescape: # Defaults: - Symfony\Bundle\TwigBundle\TwigDefaultEscapingStrategy - guess autoescape_service: null autoescape_service_method: null base_template_class: ~ # Example: Twig_Template cache: '%kernel.cache_dir%/twig' charset: '%kernel.charset%' debug: '%kernel.debug%' strict_variables: ~ auto_reload: ~ optimizations: ~ paths: # Prototype paths: ~
具體的第三方bundle安裝方法,和該bundle的使用方法都可以在它的README文件裡查看。
本文永久地址:http://blog.it985.com/7059.html
本文出自 IT985博客 ,轉載時請注明出處及相應鏈接。
更多關於PHP框架相關內容感興趣的讀者可查看本站專題:《php優秀開發框架總結》,《codeigniter入門教程》,《CI(CodeIgniter)框架進階教程》,《Yii框架入門及常用技巧總結》及《ThinkPHP入門教程》
希望本文所述對大家基於Symfony框架的PHP程序設計有所幫助。