Skip to content

Commit 3e51588

Browse files
Merge pull request #27 from TheDragonCode/2.x
Drop PHP 8.1 support
2 parents 2477279 + 26db835 commit 3e51588

3 files changed

Lines changed: 6 additions & 12 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ "8.1", "8.2", "8.3", "8.4" ]
12+
php: [ "8.2", "8.3", "8.4" ]
1313
laravel: [ "8.0", "9.0", "10.0", "11.0", "12.0" ]
1414
exclude:
1515
- laravel: 8.0
@@ -24,12 +24,6 @@ jobs:
2424
- laravel: 9.0
2525
php: 8.4
2626

27-
- laravel: 11.0
28-
php: 8.1
29-
30-
- laravel: 12.0
31-
php: 8.1
32-
3327

3428
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
3529

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Or manually update `require` block of `composer.json` and run composer update.
2222
```json
2323
{
2424
"require": {
25-
"dragon-code/size-sorter": "^1.0"
25+
"dragon-code/size-sorter": "^2.0"
2626
}
2727
}
2828
```
@@ -35,7 +35,7 @@ Or manually update `require` block of `composer.json` and run composer update.
3535
3636
| Compatibility | Versions |
3737
|:--------------|:---------|
38-
| PHP | 8.1+ |
38+
| PHP | 8.2+ |
3939
| Laravel | 8.0+ |
4040
| Symfony | 5.3+ |
4141

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535
}
3636
],
3737
"require": {
38-
"php": "^8.1",
38+
"php": "^8.2",
3939
"archtechx/enums": "^0.3.1 || ^1.0",
4040
"dragon-code/support": "^6.9",
41-
"illuminate/collections": "^8.75 || ^9.0 || ^10.0 || ^11.0 || ^12.0"
41+
"illuminate/collections": "^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0"
4242
},
4343
"require-dev": {
4444
"dragon-code/codestyler": "^6.0",
4545
"fakerphp/faker": "^1.21",
46-
"illuminate/database": "^8.75 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
46+
"illuminate/database": "^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
4747
"phpunit/phpunit": "^9.6 || ^10.0 || ^11.0 || ^12.0",
4848
"symfony/var-dumper": "^5.3 || ^6.0 || ^7.0"
4949
},

0 commit comments

Comments
 (0)