-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRoboFile.php
More file actions
60 lines (53 loc) · 1.23 KB
/
RoboFile.php
File metadata and controls
60 lines (53 loc) · 1.23 KB
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
<?php
/*
* This file is part of the fabschurt/kontact package.
*
* (c) 2016 Fabien Schurter <fabien@fabschurt.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require_once __DIR__.'/vendor/autoload.php';
use Robo\Tasks;
/**
* @author Fabien Schurter <fabien@fabschurt.com>
*/
class RoboFile extends Tasks
{
public function __construct()
{
$this->stopOnFail();
}
/**
* Runs PHPUnit tests.
*/
public function test()
{
$this
->taskPHPUnit('./vendor/bin/phpunit')
->run()
;
}
/**
* Validates PHP syntax.
*/
public function lint()
{
$this
->taskExec('find {src,tests} -type f -name "*.php" -exec php -l {} \\;')
->run()
;
}
/**
* Checks coding standards using PHP CS Fixer.
*
* @option $fix Check CS, but also implement fixes (WARNING: source files will be modified)
*/
public function cs(array $opts = ['fix' => false])
{
$this
->taskExec(sprintf('./vendor/bin/php-cs-fixer fix -vvv %s', $opts['fix'] ? '' : '--dry-run'))
->run()
;
}
}