File tree Expand file tree Collapse file tree 5 files changed +13
-14
lines changed Expand file tree Collapse file tree 5 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ language: php
3
3
sudo : false
4
4
5
5
php :
6
- - 7.1
7
6
- 7.2
8
7
- 7.3
9
8
- 7.4
9
+ - 8.0
10
10
11
11
before_script :
12
12
- composer self-update
@@ -17,7 +17,7 @@ install:
17
17
script :
18
18
- ./vendor/bin/phpcs ./ -p --encoding=utf-8 --extensions=php --ignore=vendor --ignore=tests --standard=phpcs.xml
19
19
- ./vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover=coverage.xml
20
- - ./vendor/bin/phpstan analyse -l 7 --no-progress -c phpstan.neon ./
20
+ - ./vendor/bin/phpstan analyse -l 8 --no-progress -c phpstan.neon ./
21
21
22
22
after_success :
23
23
- bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ PHP library for transliteration. 🇺🇦 🇬🇧 🇷🇺 🔡 🐘
13
13
14
14
## Requirements 🧐
15
15
16
- * PHP 7.1 * and later*
16
+ * PHP 7.2 * and later*
17
17
18
18
## Installation 🌱
19
19
20
- ``` composer req fresh/transliteration='~2.1 ' ```
20
+ ``` composer req fresh/transliteration='~2.2 ' ```
21
21
22
22
## Available transliteration methods 🎁
23
23
Original file line number Diff line number Diff line change 17
17
"issues" : " https://github.com/fre5h/transliteration/issues"
18
18
},
19
19
"require" : {
20
- "php" : " >=7.1 "
20
+ "php" : " >=7.2 "
21
21
},
22
22
"require-dev" : {
23
- "friendsofphp/php-cs-fixer" : " ^2.16" ,
24
- "johnkary/phpunit-speedtrap" : " ^3.2" ,
25
- "phpstan/phpstan" : " ^0.11" ,
26
- "phpstan/phpstan-phpunit" : " ^0.11" ,
27
- "phpunit/phpunit" : " ~7.5" ,
28
- "slam/phpstan-extensions" : " ^3.4" ,
23
+ "friendsofphp/php-cs-fixer" : " ^2.17" ,
24
+ "phpstan/phpstan" : " ^0.12" ,
25
+ "phpstan/phpstan-phpunit" : " ^0.12" ,
26
+ "phpunit/phpunit" : " ~8.5" ,
27
+ "slam/phpstan-extensions" : " ^5.0.2" ,
29
28
"squizlabs/php_codesniffer" : " ~3.5" ,
30
- "thecodingmachine/phpstan-strict-rules" : " ^0.11 "
29
+ "thecodingmachine/phpstan-strict-rules" : " ^0.12 "
31
30
},
32
31
"autoload" : {
33
32
"psr-4" : {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ includes:
3
3
- 'vendor/phpstan/phpstan-phpunit/rules.neon'
4
4
- 'vendor/slam/phpstan-extensions/conf/slam-rules.neon'
5
5
parameters :
6
- level : 7
6
+ level : 8
7
7
excludes_analyse :
8
8
- '%rootDir%/../../../tests/*'
9
9
- '%rootDir%/../../../vendor/*'
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
3
3
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
- xsi : noNamespaceSchemaLocation =" http://schema.phpunit.de/7 .5/phpunit.xsd"
4
+ xsi : noNamespaceSchemaLocation =" http://schema.phpunit.de/8 .5/phpunit.xsd"
5
5
colors =" true"
6
6
bootstrap =" vendor/autoload.php"
7
7
>
You can’t perform that action at this time.
0 commit comments