Skip to content

Commit

Permalink
build: drop php 7.1 and 7.2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Gemorroj committed Dec 5, 2020
1 parent f5e599e commit 7b542d1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
composer.phar
composer.lock
vendor/

phpunit.xml
.phpunit.result.cache

.php_cs
.php_cs.cache
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

### Requirements:

- PHP >= 7.1.3
- PHP >= 7.3


### Installation:
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
}
],
"require": {
"php": "^7.1.3|^8.0"
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
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/9.5/phpunit.xsd"
colors="true"
bootstrap="vendor/autoload.php"
>
Expand Down
2 changes: 0 additions & 2 deletions tests/ExtCustomTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ class ExtCustomTag implements ExtTagInterface

/**
* #EXTCUSTOMTAG:data.
*
* @param string $lineStr
*/
public function __construct(?string $lineStr = null)
{
Expand Down

0 comments on commit 7b542d1

Please sign in to comment.