File tree 4 files changed +27
-9
lines changed
4 files changed +27
-9
lines changed Original file line number Diff line number Diff line change 5
5
runs-on : ubuntu-latest
6
6
strategy :
7
7
matrix :
8
- php-versions : ['7.3 ', '7.4 ', '8.0 ']
8
+ php-versions : ['7.4 ', '8.0 ', '8.1 ']
9
9
name : PHP ${{ matrix.php-versions }} tests
10
10
steps :
11
11
- name : Checkout
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2.0.0
4
+
5
+ ### PHP support
6
+
7
+ - Dropped support for PHP ` 7.3 ` .
8
+ - Added support for PHP ` 8.1 ` .
9
+
10
+ ### 3rd party updates
11
+
12
+ - Updated ` symfony/finder ` to version ` 5 ` .
13
+
3
14
## 1.2.0
4
15
5
16
### PHP support
Original file line number Diff line number Diff line change 28
28
},
29
29
"scripts" : {
30
30
"phpcheck" : [
31
- " ./vendor/bin/phpstan analyse -l max --memory-limit=1G src/" ,
32
- " ./vendor/bin/phpcs -p --standard=PSR2 --extensions=php src/"
31
+ " ./vendor/bin/phpstan analyse -c phpstan.neon - l max --memory-limit=1G src/ tests /" ,
32
+ " ./vendor/bin/phpcs -p --standard=PSR2 --extensions=php src/ tests/ "
33
33
],
34
34
"phpcbf" : [
35
- " ./vendor/bin/phpcbf -p --standard=PSR2 --extensions=php src/"
35
+ " ./vendor/bin/phpcbf -p --standard=PSR2 --extensions=php src/ tests/ "
36
36
],
37
37
"phpunit" : [
38
38
" ./vendor/bin/phpunit"
39
39
]
40
40
},
41
41
"minimum-stability" : " stable" ,
42
42
"require" : {
43
+ "php" : " 7.4.* || 8.0.* || 8.1.*" ,
43
44
"ext-json" : " *" ,
44
- "php" : " 7.3.* || 7.4.* || 8.0.*" ,
45
- "symfony/finder" : " ~4.4"
45
+ "symfony/finder" : " ^5.0.0"
46
46
},
47
47
"require-dev" : {
48
- "phpstan/phpstan" : " 0.12.34 " ,
49
- "phpunit/phpunit" : " ~8.5 " ,
50
- "squizlabs/php_codesniffer" : " ^3.5 "
48
+ "phpstan/phpstan" : " 1.2.0 " ,
49
+ "phpunit/phpunit" : " 9.5.10 " ,
50
+ "squizlabs/php_codesniffer" : " 3.6.2 "
51
51
}
52
52
}
Original file line number Diff line number Diff line change
1
+ parameters :
2
+ ignoreErrors :
3
+ -
4
+ message : " #^Unreachable statement \\ - code above always terminates\\ .$#"
5
+ count : 1
6
+ path : tests/Naneau/ProjectVersioner/Test/Reader/FinderTest.php
7
+
You can’t perform that action at this time.
0 commit comments