MyGit

1.0.0.rc1

capistrano/symfony

版本发布时间: 2016-03-06 18:32:39

capistrano/symfony最新发布版本:2.0.0(2019-12-07 23:58:57)

1.0.0.rc1

This release focuses on making the new directory structure for Symfony 3 available (and on by default).

Add the following to your deploy.rb if you are using the old directory structure (and distribution bundle)

set :symfony_directory_structure, 2
set :sensio_distribution_version, 4

The Symfony console has been wrapped in a DSL method, to allow for more natural capistrano syntax when creating console based tasks.

Before:

namespace :deploy do
  task :migrate do
    invoke 'symfony:console', 'doctrine:migrations:migrate', '--no-interaction', 'db'
  end
end

After

namespace :deploy do
  task :migrate do
    on roles(:db) do
      symfony_console "doctrine:migrations:migrate", "--no-interaction"
    end
  end
end

https://github.com/capistrano/symfony/compare/0.4.0...1.0.0.rc1

Contributors

Thanks to everyone who has filed an issue or submitted a fix

相关地址:原始地址 下载(tar) 下载(zip)

查看:2016-03-06发行的版本