Skip to content

Commit

Permalink
feat: no longer supports PHP 7.4 (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
antten committed Aug 22, 2024
1 parent b49461d commit 210da75
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 47 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
php-version: [ '7.4', '8.0', '8.1' ]
php-version: [ '8.0', '8.1', '8.2', '8.3' ]
steps:
- uses: actions/checkout@master
- uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": "^7.4 || ^8.0",
"php": "^8.0",
"friendsofphp/php-cs-fixer": "^3.57"
},
"autoload": {
Expand Down
1 change: 1 addition & 0 deletions src/BedrockStreaming.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public function getRules(): array
'phpdoc_summary' => false,
'single_line_throw' => false,
'yoda_style' => false,
'trailing_comma_in_multiline' => ['elements' => ['arguments', 'arrays', 'match', 'parameters']],
];

return $rules;
Expand Down
45 changes: 0 additions & 45 deletions src/Php74.php

This file was deleted.

0 comments on commit 210da75

Please sign in to comment.