Skip to content

Commit e35c73b

Browse files
committed
Updated requirements
1 parent ed15160 commit e35c73b

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,8 @@
1111
*.phpstub linguist-language=PHP
1212

1313
# Ignore files for distribution archives.
14+
/*.dist* export-ignore
1415
/.* export-ignore
16+
/rector.php export-ignore
17+
/stubs export-ignore
18+
/tests export-ignore

.github/workflows/php-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
strategy:
2424
matrix:
2525
php-version:
26-
- "7.3"
2726
- "7.4"
2827
- "8.0"
28+
- "8.1"
2929
dependencies:
3030
- "lowest"
3131
- "highest"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Downloads](https://img.shields.io/packagist/dt/fox91/dev-tools.svg?colorB=007EC6)](https://packagist.org/packages/fox91/dev-tools)
55
[![Build status](https://github.com/fox91/php-dev-tools/workflows/php-ci/badge.svg?branch=main)](https://github.com/fox91/php-dev-tools/actions?query=workflow%3Aphp-ci+branch%3Amain)
66

7-
Compatible with PHP `7.3`, `7.4` and `8.0`.
7+
Compatible with PHP `7.4`, `8.0` and `8.1`.
88

99
## Included tools
1010

composer.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
"minimum-stability": "dev",
1313
"prefer-stable": true,
1414
"require": {
15-
"php": "^7.3 || ~8.0.0",
15+
"php": "^7.4 || ~8.0.0 || ~8.1.0",
1616
"fox91/coding-standard": "^0.2.0",
1717
"php-parallel-lint/php-console-highlighter": "^0.5.0",
1818
"php-parallel-lint/php-parallel-lint": "^1.2",
1919
"phpunit/phpunit": "^9.5",
2020
"psalm/plugin-phpunit": "^0.15.1 || ^0.16.0",
21-
"rector/rector": "^0.12.0 <0.12.9",
21+
"rector/rector": "^0.12.0",
2222
"roave/security-advisories": "dev-latest",
2323
"squizlabs/php_codesniffer": "^3.6",
2424
"vimeo/psalm": "^4.6"
@@ -33,9 +33,6 @@
3333
},
3434
"sort-packages": true
3535
},
36-
"conflict": {
37-
"rector/rector": "0.11.33, 0.11.34"
38-
},
3936
"suggest": {
4037
"brainbits/phpstan-rules": "[--dev] PHPStan extension with opinionated strict rules for better code in tests",
4138
"ergebnis/phpstan-rules": "[--dev] Provides additional rules for phpstan/phpstan",

configs/rector.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
$containerConfigurator->import(PHPUnitSetList::PHPUNIT_SPECIFIC_METHOD);
2828
$containerConfigurator->import(PHPUnitSetList::PHPUNIT_YIELD_DATA_PROVIDER);
2929
$containerConfigurator->import(SetList::CODE_QUALITY);
30-
$containerConfigurator->import(SetList::CODE_QUALITY_STRICT);
3130
$containerConfigurator->import(SetList::DEAD_CODE);
3231
$containerConfigurator->import(SetList::NAMING);
3332
$containerConfigurator->import(SetList::PHP_74);

0 commit comments

Comments
 (0)