Skip to content

Commit bae142a

Browse files
authored
Update vendors
1 parent 7c661c3 commit bae142a

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ language: php
33
sudo: false
44

55
php:
6-
- 7.1
76
- 7.2
87
- 7.3
98
- 7.4
9+
- 8.0
1010

1111
before_script:
1212
- composer self-update
@@ -17,7 +17,7 @@ install:
1717
script:
1818
- ./vendor/bin/phpcs ./ -p --encoding=utf-8 --extensions=php --ignore=vendor --ignore=tests --standard=phpcs.xml
1919
- ./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 ./
2121

2222
after_success:
2323
- bash <(curl -s https://codecov.io/bash)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ PHP library for transliteration. 🇺🇦 🇬🇧 🇷🇺 🔡 🐘
1313

1414
## Requirements 🧐
1515

16-
* PHP 7.1 *and later*
16+
* PHP 7.2 *and later*
1717

1818
## Installation 🌱
1919

20-
```composer req fresh/transliteration='~2.1'```
20+
```composer req fresh/transliteration='~2.2'```
2121

2222
## Available transliteration methods 🎁
2323

composer.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,16 @@
1717
"issues": "https://github.com/fre5h/transliteration/issues"
1818
},
1919
"require": {
20-
"php": ">=7.1"
20+
"php": ">=7.2"
2121
},
2222
"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",
2928
"squizlabs/php_codesniffer": "~3.5",
30-
"thecodingmachine/phpstan-strict-rules": "^0.11"
29+
"thecodingmachine/phpstan-strict-rules": "^0.12"
3130
},
3231
"autoload": {
3332
"psr-4": {

phpstan.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ includes:
33
- 'vendor/phpstan/phpstan-phpunit/rules.neon'
44
- 'vendor/slam/phpstan-extensions/conf/slam-rules.neon'
55
parameters:
6-
level: 7
6+
level: 8
77
excludes_analyse:
88
- '%rootDir%/../../../tests/*'
99
- '%rootDir%/../../../vendor/*'

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<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"
55
colors="true"
66
bootstrap="vendor/autoload.php"
77
>

0 commit comments

Comments
 (0)