Skip to content

Commit

Permalink
Merge pull request #62 from FlorentTorregrosa/61
Browse files Browse the repository at this point in the history
Issue #61: Use string_implicit_backslashes instead of deprecated escape_implicit_backslashes.
  • Loading branch information
drupol authored Feb 15, 2024
2 parents 56ed577 + e058439 commit e735cec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
php-versions: ['7.4']
php-versions: ['8.2']

steps:
- name: Set git to use LF
Expand All @@ -28,7 +28,7 @@ jobs:
fetch-depth: 1

- name: Install PHP
uses: shivammathur/setup-php@2.25.5
uses: shivammathur/setup-php@2.29.0
with:
php-version: ${{ matrix.php-versions }}
extensions: pcov,xdebug,mbstring
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"require": {
"php": ">= 7.4",
"friendsofphp/php-cs-fixer": "^3.35.1",
"friendsofphp/php-cs-fixer": "^3.49.0",
"symfony/yaml": "^3 || ^4 || ^5 || ^6"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion config/php/phpcsfixer.rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ parameters:
error_suppression:
mute_deprecation_error: true
noise_remaining_usages: true
escape_implicit_backslashes: true
explicit_indirect_variable: false
explicit_string_variable: true
final_class: false
Expand Down Expand Up @@ -339,6 +338,7 @@ parameters:
static_lambda: true
strict_comparison: true
strict_param: true
string_implicit_backslashes: true
string_length_to_empty: true
string_line_ending: true
ternary_to_null_coalescing: false
Expand Down

0 comments on commit e735cec

Please sign in to comment.