This repository was archived by the owner on Feb 21, 2022. It is now read-only.
File tree 5 files changed +36
-23
lines changed
5 files changed +36
-23
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- return Symfony \CS \Config \Config::create ()
4
- // use SYMFONY_LEVEL:
5
- ->level (Symfony \CS \FixerInterface::SYMFONY_LEVEL )
6
- // and extra fixers:
7
- ->fixers (array (
8
- 'concat_with_spaces ' ,
9
- 'multiline_spaces_before_semicolon ' ,
10
- 'short_array_syntax ' ,
11
- '-remove_lines_between_uses '
12
- ))
13
- ->finder (
14
- Symfony \CS \Finder \DefaultFinder::create ()
15
- ->in ('src/ ' )
16
- ->in ('tests/ ' )
17
- )
3
+ $ finder = PhpCsFixer \Finder::create ()
4
+ ->in (__DIR__ .'/src ' )
5
+ ->in (__DIR__ .'/tests ' )
6
+ ;
7
+
8
+ return PhpCsFixer \Config::create ()
9
+ ->setRules ([
10
+ '@Symfony ' => true ,
11
+ 'concat_space ' => ['spacing ' => 'one ' ],
12
+ 'no_multiline_whitespace_before_semicolons ' => false ,
13
+ 'array_syntax ' => ['syntax ' => 'short ' ],
14
+ 'yoda_style ' => false ,
15
+ 'return_type_declaration ' => ['space_before ' => 'one ' ],
16
+ 'self_accessor ' => false ,
17
+ 'no_extra_consecutive_blank_lines ' => false ,
18
+ ])
19
+ ->setFinder ($ finder )
18
20
;
Original file line number Diff line number Diff line change @@ -2,15 +2,20 @@ language: php
2
2
3
3
sudo : false
4
4
5
- php :
6
- - 7.0
7
- - 7.1
5
+ matrix :
6
+ include :
7
+ - php : 7.0
8
+ - php : 7.1
9
+ - php : 7.2
10
+ env : deps=low
11
+ fast_finish : true
8
12
9
13
install :
10
- - composer update --prefer-source --no-interaction
14
+ - phpenv config-rm xdebug.ini
15
+ - if [[ $deps = low ]]; then composer update --prefer-lowest --prefer-stable; else composer install; fi
11
16
12
17
script :
13
- - vendor/bin/phpunit --coverage-text
18
+ - phpdbg -qrr vendor/bin/phpunit --coverage-text
14
19
15
20
notifications :
16
21
email : false
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ need the [box-project/box2](https://github.com/box-project/box2) library.
48
48
``` bash
49
49
$ git clone
[email protected] :mmoreram/php-formatter.git
50
50
$ cd php-formatter
51
- $ composer update
51
+ $ composer update --no-dev
52
52
$ box build -v
53
53
$ build/php-formatter.phar
54
54
```
Original file line number Diff line number Diff line change 23
23
"symfony/property-access" : " ^3.2||^4.0"
24
24
},
25
25
"require-dev" : {
26
- "friendsofphp/php-cs-fixer" : " ^1.12.4 " ,
26
+ "friendsofphp/php-cs-fixer" : " ^2.8.3 " ,
27
27
"phpunit/phpunit" : " ^5.6.4"
28
28
},
29
29
"bin" : [
Original file line number Diff line number Diff line change 21
21
<directory >./tests/</directory >
22
22
</testsuite >
23
23
</testsuites >
24
- </phpunit >
24
+
25
+ <filter >
26
+ <whitelist >
27
+ <directory suffix =" .php" >src</directory >
28
+ </whitelist >
29
+ </filter >
30
+ </phpunit >
You can’t perform that action at this time.
0 commit comments