Skip to content

Commit

Permalink
Merge pull request #224 from PHPCSStandards/feature/tests-update-phpc…
Browse files Browse the repository at this point in the history
…sversions

Tests/PHPCSVersions: update for latest PHPCS releases
  • Loading branch information
Potherca authored Aug 26, 2024
2 parents 075144b + b5f7585 commit 293db2c
Showing 1 changed file with 56 additions and 53 deletions.
109 changes: 56 additions & 53 deletions tests/PHPCSVersions.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,59 +39,62 @@ final class PHPCSVersions
* @var array
*/
private static $allPhpcsVersions = array(
'2.0.0' => '2.0.0',
'2.1.0' => '2.1.0',
'2.2.0' => '2.2.0',
'2.3.0' => '2.3.0',
'2.3.1' => '2.3.1',
'2.3.2' => '2.3.2',
'2.3.3' => '2.3.3',
'2.3.4' => '2.3.4',
'2.4.0' => '2.4.0',
'2.5.0' => '2.5.0',
'2.5.1' => '2.5.1',
'2.6.0' => '2.6.0',
'2.6.1' => '2.6.1',
'2.6.2' => '2.6.2',
'2.7.0' => '2.7.0',
'2.7.1' => '2.7.1',
'2.8.0' => '2.8.0',
'2.8.1' => '2.8.1',
'2.9.0' => '2.9.0',
'2.9.1' => '2.9.1',
'2.9.2' => '2.9.2',
'3.1.0' => '3.1.0',
'3.1.1' => '3.1.1',
'3.2.0' => '3.2.0',
'3.2.1' => '3.2.1',
'3.2.2' => '3.2.2',
'3.2.3' => '3.2.3',
'3.3.0' => '3.3.0',
'3.3.1' => '3.3.1',
'3.3.2' => '3.3.2',
'3.4.0' => '3.4.0',
'3.4.1' => '3.4.1',
'3.4.2' => '3.4.2',
'3.5.0' => '3.5.0',
'3.5.1' => '3.5.1',
'3.5.2' => '3.5.2',
'3.5.3' => '3.5.3',
'3.5.4' => '3.5.4',
'3.5.5' => '3.5.5',
'3.5.6' => '3.5.6',
'3.5.7' => '3.5.7',
'3.5.8' => '3.5.8',
'3.6.0' => '3.6.0',
'3.6.1' => '3.6.1',
'3.6.2' => '3.6.2',
'3.7.0' => '3.7.0',
'3.7.1' => '3.7.1',
'3.7.2' => '3.7.2',
'3.8.0' => '3.8.0',
'3.8.1' => '3.8.1',
'3.9.0' => '3.9.0',
'3.9.1' => '3.9.1',
'3.9.2' => '3.9.2',
'2.0.0' => '2.0.0',
'2.1.0' => '2.1.0',
'2.2.0' => '2.2.0',
'2.3.0' => '2.3.0',
'2.3.1' => '2.3.1',
'2.3.2' => '2.3.2',
'2.3.3' => '2.3.3',
'2.3.4' => '2.3.4',
'2.4.0' => '2.4.0',
'2.5.0' => '2.5.0',
'2.5.1' => '2.5.1',
'2.6.0' => '2.6.0',
'2.6.1' => '2.6.1',
'2.6.2' => '2.6.2',
'2.7.0' => '2.7.0',
'2.7.1' => '2.7.1',
'2.8.0' => '2.8.0',
'2.8.1' => '2.8.1',
'2.9.0' => '2.9.0',
'2.9.1' => '2.9.1',
'2.9.2' => '2.9.2',
'3.1.0' => '3.1.0',
'3.1.1' => '3.1.1',
'3.2.0' => '3.2.0',
'3.2.1' => '3.2.1',
'3.2.2' => '3.2.2',
'3.2.3' => '3.2.3',
'3.3.0' => '3.3.0',
'3.3.1' => '3.3.1',
'3.3.2' => '3.3.2',
'3.4.0' => '3.4.0',
'3.4.1' => '3.4.1',
'3.4.2' => '3.4.2',
'3.5.0' => '3.5.0',
'3.5.1' => '3.5.1',
'3.5.2' => '3.5.2',
'3.5.3' => '3.5.3',
'3.5.4' => '3.5.4',
'3.5.5' => '3.5.5',
'3.5.6' => '3.5.6',
'3.5.7' => '3.5.7',
'3.5.8' => '3.5.8',
'3.6.0' => '3.6.0',
'3.6.1' => '3.6.1',
'3.6.2' => '3.6.2',
'3.7.0' => '3.7.0',
'3.7.1' => '3.7.1',
'3.7.2' => '3.7.2',
'3.8.0' => '3.8.0',
'3.8.1' => '3.8.1',
'3.9.0' => '3.9.0',
'3.9.1' => '3.9.1',
'3.9.2' => '3.9.2',
'3.10.0' => '3.10.0',
'3.10.1' => '3.10.1',
'3.10.2' => '3.10.2',
);

/**
Expand Down

0 comments on commit 293db2c

Please sign in to comment.