Skip to content

Commit 082088c

Browse files
authored
chore: drop support for PHP 8.1 (#4)
1 parent 54bc479 commit 082088c

File tree

5 files changed

+12
-32
lines changed

5 files changed

+12
-32
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
- '.github/workflows/run-tests.yml'
88
- 'phpunit.xml.dist'
99
- 'composer.json'
10-
- 'composer.lock'
1110

1211
jobs:
1312
test:
@@ -17,7 +16,7 @@ jobs:
1716
fail-fast: true
1817
matrix:
1918
os: [ubuntu-latest, macos-latest, windows-latest]
20-
php: [8.4, 8.3, 8.2, 8.1]
19+
php: [8.4, 8.3, 8.2]
2120
stability: [prefer-lowest, prefer-stable]
2221

2322
name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
/list
55
/vendor
66
.DS_Store
7+
.env
78
composer.lock
89
phpunit.xml

composer.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,19 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^8.1"
20+
"php": "^8.2",
21+
"symfony/browser-kit": "^7.2",
22+
"symfony/console": "^7.2",
23+
"symfony/css-selector": "^7.2",
24+
"symfony/http-client": "^7.2"
2125
},
2226
"require-dev": {
2327
"laravel/pint": "^1.18",
24-
"pestphp/pest": "^2.36|^3.5",
25-
"pestphp/pest-plugin-type-coverage": "^2.8|^3.2",
26-
"phpstan/phpstan": "^1.10|^2.0",
27-
"phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
28-
"symfony/browser-kit": "^6.4|^7.2",
29-
"symfony/console": "^6.4|^7.2",
30-
"symfony/css-selector": "^6.4|^7.2",
31-
"symfony/http-client": "^6.4|^7.2"
28+
"pestphp/pest": "^3.5",
29+
"pestphp/pest-plugin-type-coverage": "^3.2",
30+
"phpstan/phpstan": "^2.0",
31+
"phpstan/phpstan-deprecation-rules": "^2.0",
32+
"roave/security-advisories": "dev-latest"
3233
},
3334
"autoload": {
3435
"psr-4": {

phpstan-baseline.neon

Lines changed: 0 additions & 19 deletions
This file was deleted.

phpstan.neon

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
includes:
2-
- phpstan-baseline.neon
32
- phar://phpstan.phar/conf/bleedingEdge.neon
43
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
54

@@ -8,7 +7,6 @@ parameters:
87

98
paths:
109
- src
11-
- tests
1210

1311
parallel:
1412
maximumNumberOfProcesses: 4

0 commit comments

Comments
 (0)