Skip to content

Commit e735cec

Browse files
authored
Merge pull request #62 from FlorentTorregrosa/61
Issue #61: Use string_implicit_backslashes instead of deprecated escape_implicit_backslashes.
2 parents 56ed577 + e058439 commit e735cec

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
17-
php-versions: ['7.4']
17+
php-versions: ['8.2']
1818

1919
steps:
2020
- name: Set git to use LF
@@ -28,7 +28,7 @@ jobs:
2828
fetch-depth: 1
2929

3030
- name: Install PHP
31-
uses: shivammathur/setup-php@2.25.5
31+
uses: shivammathur/setup-php@2.29.0
3232
with:
3333
php-version: ${{ matrix.php-versions }}
3434
extensions: pcov,xdebug,mbstring

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"require": {
1313
"php": ">= 7.4",
14-
"friendsofphp/php-cs-fixer": "^3.35.1",
14+
"friendsofphp/php-cs-fixer": "^3.49.0",
1515
"symfony/yaml": "^3 || ^4 || ^5 || ^6"
1616
},
1717
"autoload": {

config/php/phpcsfixer.rules.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ parameters:
101101
error_suppression:
102102
mute_deprecation_error: true
103103
noise_remaining_usages: true
104-
escape_implicit_backslashes: true
105104
explicit_indirect_variable: false
106105
explicit_string_variable: true
107106
final_class: false
@@ -339,6 +338,7 @@ parameters:
339338
static_lambda: true
340339
strict_comparison: true
341340
strict_param: true
341+
string_implicit_backslashes: true
342342
string_length_to_empty: true
343343
string_line_ending: true
344344
ternary_to_null_coalescing: false

0 commit comments

Comments
 (0)