Skip to content

Commit dfa7be1

Browse files
Updated docs for PHP 8.4
1 parent dd98e15 commit dfa7be1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

configuration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Our default (PHP-only) configuration looks like this:
4343

4444
```yaml
4545
risky: false
46-
version: 8.3
46+
version: 8.4
4747
preset: recommended
4848
monolithic: true
4949
finder:

finder.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Take a look at the below example of a PHP-only configuration:
77
```yaml
88
risky: false
99

10-
version: 8.3
10+
version: 8.4
1111

1212
presets: recommended
1313

multi-language.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The configuration for each language must now fall under the relevant name. For i
77
```yaml
88
php:
99
risky: true
10-
version: 8.3
10+
version: 8.4
1111
preset: laravel
1212
enabled:
1313
- ternary_to_elvis_operator
@@ -74,7 +74,7 @@ Setting `php: true` translates to the following:
7474
```yaml
7575
php:
7676
risky: false
77-
version: 8.3
77+
version: 8.4
7878
preset: recommended
7979
monolithic: true
8080
tab-width: 4

standalone-php.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ To demonstrate this, below is the contents of an example `.styleci.yml` file, us
77
```yaml
88
risky: false
99

10-
version: 8.3
10+
version: 8.4
1111

1212
preset: recommended
1313

@@ -55,7 +55,7 @@ Some of our fixers do things that can change code behavior, by design. Risky mod
5555
<a name="version"></a>
5656
## Version
5757

58-
It is possible to set the PHP version your code will be parsed using using the `version` option. `7.4`, `8.0`, `8.1`, `8.2`, and `8.3` are the allowed values, and additionally, `7` is an alias for `7.4` and `8` is an alias for `8.3`. PHP version 8.3 is the default version.
58+
It is possible to set the PHP version your code will be parsed using using the `version` option. `7.4`, `8.0`, `8.1`, `8.2`, `8.3`, and `8.4` are the allowed values, and additionally, `7` is an alias for `7.4` and `8` is an alias for `8.4`. PHP version 8.4 is the default version.
5959

6060
<a name="presets"></a>
6161
## Presets

0 commit comments

Comments
 (0)