Skip to content

Commit 9f5e203

Browse files
committed
Reorders require-dev dependencies in composer.json
This commit reorders the `require-dev` dependencies in the `composer.json` file. This change improves the consistency and readability of the dependency list.
1 parent f18efd3 commit 9f5e203

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

bin/regex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,4 +249,4 @@ switch ($command) {
249249
output(error("Unknown command: {$command}\n\n"));
250250
showHelp();
251251
exit(1);
252-
}
252+
}

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,19 @@
4242
"php": ">=8.4"
4343
},
4444
"require-dev": {
45-
"phpunit/phpunit": "^12.5.1",
4645
"phpstan/phpstan": "^2.1.33",
4746
"phpstan/phpstan-phpunit": "^2.0.10",
48-
"symfony/http-kernel": "^8.0",
49-
"symfony/dependency-injection": "^8.0",
50-
"symfony/config": "^8.0",
51-
"symfony/http-foundation": "^8.0",
52-
"symfony/routing": "^8.0",
53-
"symfony/validator": "^8.0",
47+
"phpunit/phpunit": "^12.5.1",
5448
"psr/cache": "^3.0",
5549
"psr/simple-cache": "^3.0",
5650
"rector/rector": "^2.2.11",
57-
"symfony/console": "^8.0"
51+
"symfony/config": "^8.0",
52+
"symfony/console": "^8.0",
53+
"symfony/dependency-injection": "^8.0",
54+
"symfony/http-foundation": "^8.0",
55+
"symfony/http-kernel": "^8.0",
56+
"symfony/routing": "^8.0",
57+
"symfony/validator": "^8.0"
5858
},
5959
"autoload": {
6060
"psr-4": {

0 commit comments

Comments
 (0)