O slideshow foi denunciado.
Seu SlideShare está sendo baixado. ×

TDC2015 Porto Alegre - Automate everything with Phing !

Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Carregando em…3
×

Confira estes a seguir

1 de 33 Anúncio

TDC2015 Porto Alegre - Automate everything with Phing !

Baixar para ler offline

Phing is a tool for PHP developers and has the same behavior of Apache Ant. Phing can automate boring tasks that developers do everyday. Understand how Phing works and how can you extend it.

The Developers Conference http://www.thedevelopersconference.com.br/tdc/2015/portoalegre/trilha-php

Phing is a tool for PHP developers and has the same behavior of Apache Ant. Phing can automate boring tasks that developers do everyday. Understand how Phing works and how can you extend it.

The Developers Conference http://www.thedevelopersconference.com.br/tdc/2015/portoalegre/trilha-php

Anúncio
Anúncio

Mais Conteúdo rRelacionado

Diapositivos para si (20)

Anúncio

Mais de Matheus Marabesi (12)

Mais recentes (20)

Anúncio

TDC2015 Porto Alegre - Automate everything with Phing !

  1. 1. phing build.xml -Drepodir=http://github.com
  2. 2. EchoTask ChmodTask ChownTask ExecTask CopyTask AppendTask MoveTask ImportTask
  3. 3. GitCloneTask ZipTask TarTask PhpLintTask PHPUnitTask PHPDocumentorTask SvnCheckoutTask
  4. 4. 1. 2. 3.
  5. 5. <?php require_once 'phing/Task.php'; class MarabesiTask { private $message = null; private $project = null; public function setMessage($str) { $this->message = $str; } public function init() {} public function main() { print($this->message); } public function setProject($project) { $this->project = $project; } }
  6. 6. <project name=”TDC2015” description=”trilhaPHP”> <echo msg=”Thank you!”/> </project>

×