-
Notifications
You must be signed in to change notification settings - Fork 1
/
RoboFile.php
69 lines (63 loc) · 1.53 KB
/
RoboFile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
require_once __DIR__ . '/app/environment.php';
/**
* This is project's console commands configuration for Robo task runner.
*
* @see http://robo.li/
* @author Petr Pliska <[email protected]>
*/
class RoboFile extends \Robo\Tasks
{
/**
* Run PHP build-in server
*/
public function devtoolsRunPhpServer()
{
// Run PHP build in server
$this->taskServer(8000)
->host('www.kiss.local')
->dir('public')
->printed(true)
->run();
}
/**
* Check syntax of php code
*/
public function devtoolsCheckPhpSyntax()
{
$this
->taskExec('vendor/bin/parallel-lint')
->option('exclude', 'vendor')
->arg('.')
->run();
}
/**
* Check PSR-2 coding style
*/
public function devtoolsCheckPhpCodingStyle()
{
$this
->taskExec('vendor/bin/phpcs')
->option('colors')
->option('standard=PSR2')
->option('encoding=utf-8')
->option('report=full')
->option('warning-severity=0')
->arg('app')
->run();
}
/**
* Calculate PHP metrics
*/
public function devtoolsCalculatePhpMetrics()
{
$this
->taskExec('vendor/bin/phpmetrics')
->option('config', 'phpmetrics.yml')
->option('ansi')
->option('failure-condition', 'false <> false')
->arg('.')
->printed(true)
->run();
}
}