darkmira tour php 2016 - automatizando tarefas com phing

51

Upload: matheus-marabesi

Post on 10-Jan-2017

505 views

Category:

Internet


2 download

TRANSCRIPT

https://www.techopedia.com/definition/16359/build-tool

https://www.techopedia.com/definition/16359/build-tool

phing build.xml -Drepodir=http://github.com

https://www.phing.info/docs/stable/hlhtml/index.html#d5e837

1.

2.

3.

HOST = [[domain]]

USER = darkmira

PASSWORD = 123456

<?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; }

}