facebook twitter hatena line email

「Php/Symfony/Symfony2/インストール」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
行32: 行32:
 
  $ app/console -V
 
  $ app/console -V
 
  Symfony version 2.3.42 - app/dev/debug
 
  Symfony version 2.3.42 - app/dev/debug
 +
 +
==venderがない時==
 +
php composer.phar install

2016年12月19日 (月) 11:53時点における版

symfonyインストーラーのDL

curl -LsS http://symfony.com/installer > symfony.phar
sudo mv symfony.phar /usr/local/bin/symfony
chmod a+x /usr/local/bin/symfony
symfony --help

symfony2のプロジェクトを作成

$ symfony new leaning-symfony2 2.3
Symfony 2.3.42 was successfully installed. Now you can:

設定ファイル

$ vi app/config/parameters.yml
parameters:
    database_driver: pdo_mysql
    database_host: 127.0.0.1
    database_port: null
    database_name: symfony
    database_user: root
    database_password: null
    mailer_transport: smtp
    mailer_host: 127.0.0.1
    mailer_user: null
    mailer_password: null
    locale: en
    secret: e1d43f3fa7a03ac8dc47196fd9ffb4xxxxxxxxxx

ビルトインサーバで起動

php app/console server:run localhost:8000

localhost:8000をブラウザで開く

バージョン確認方法

$ app/console -V
Symfony version 2.3.42 - app/dev/debug

venderがない時

php composer.phar install