Skip to content

Commit

Permalink
Update vendors
Browse files Browse the repository at this point in the history
  • Loading branch information
fre5h committed Dec 25, 2020
1 parent 7c661c3 commit bae142a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ language: php
sudo: false

php:
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0

before_script:
- composer self-update
Expand All @@ -17,7 +17,7 @@ install:
script:
- ./vendor/bin/phpcs ./ -p --encoding=utf-8 --extensions=php --ignore=vendor --ignore=tests --standard=phpcs.xml
- ./vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover=coverage.xml
- ./vendor/bin/phpstan analyse -l 7 --no-progress -c phpstan.neon ./
- ./vendor/bin/phpstan analyse -l 8 --no-progress -c phpstan.neon ./

after_success:
- bash <(curl -s https://codecov.io/bash)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ PHP library for transliteration. 🇺🇦 🇬🇧 🇷🇺 🔡 🐘

## Requirements 🧐

* PHP 7.1 *and later*
* PHP 7.2 *and later*

## Installation 🌱

```composer req fresh/transliteration='~2.1'```
```composer req fresh/transliteration='~2.2'```

## Available transliteration methods 🎁

Expand Down
15 changes: 7 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,16 @@
"issues": "https://github.com/fre5h/transliteration/issues"
},
"require": {
"php": ">=7.1"
"php": ">=7.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"johnkary/phpunit-speedtrap": "^3.2",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-phpunit": "^0.11",
"phpunit/phpunit": "~7.5",
"slam/phpstan-extensions": "^3.4",
"friendsofphp/php-cs-fixer": "^2.17",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "~8.5",
"slam/phpstan-extensions": "^5.0.2",
"squizlabs/php_codesniffer": "~3.5",
"thecodingmachine/phpstan-strict-rules": "^0.11"
"thecodingmachine/phpstan-strict-rules": "^0.12"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ includes:
- 'vendor/phpstan/phpstan-phpunit/rules.neon'
- 'vendor/slam/phpstan-extensions/conf/slam-rules.neon'
parameters:
level: 7
level: 8
excludes_analyse:
- '%rootDir%/../../../tests/*'
- '%rootDir%/../../../vendor/*'
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/7.5/phpunit.xsd"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/8.5/phpunit.xsd"
colors="true"
bootstrap="vendor/autoload.php"
>
Expand Down

0 comments on commit bae142a

Please sign in to comment.