File tree Expand file tree Collapse file tree 1 file changed +3
-23
lines changed Expand file tree Collapse file tree 1 file changed +3
-23
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ This tool checks syntax of PHP files faster than serial check with a fancier out
4
4
5
5
Running parallel jobs in PHP is inspired by Nette framework tests.
6
6
7
- ## Install
7
+ ## Installation
8
8
9
9
Just run the following command to install it:
10
10
11
11
composer require --dev jakub-onderka/php-parallel-lint
12
12
13
- For colored output install the suggested package ` jakub-onderka/php-console-highlighter ` :
13
+ For colored output also install the suggested package ` jakub-onderka/php-console-highlighter ` :
14
14
15
15
composer require --dev jakub-onderka/php-console-highlighter
16
16
@@ -44,27 +44,7 @@ For colored output install the suggested package `jakub-onderka/php-console-high
44
44
45
45
For run from command line:
46
46
47
-
48
- ./bin/parallel-lint --exclude app --exclude vendor .
49
-
50
-
51
- or setting for ANT:
52
-
53
- ``` xml
54
- <condition property =" parallel-lint" value =" ${basedir}/bin/parallel-lint.bat" else =" ${basedir}/bin/parallel-lint" >
55
- <os family =" windows" />
56
- </condition >
57
-
58
- <target name =" parallel-lint" description =" Run PHP parallel lint" >
59
- <exec executable =" ${parallel-lint}" failonerror =" true" >
60
- <arg line =" --exclude" />
61
- <arg path =" ${basedir}/app/" />
62
- <arg line =" --exclude" />
63
- <arg path =" ${basedir}/vendor/" />
64
- <arg path =" ${basedir}" />
65
- </exec >
66
- </target >
67
- ```
47
+ vendor/bin/parallel-lint --exclude app --exclude vendor .
68
48
69
49
## Create Phar package
70
50
You can’t perform that action at this time.
0 commit comments