Skip to content

Commit 23b5f8a

Browse files
committed
chore(deps): bump dependencies and update composer.json scripts
1 parent 84261f7 commit 23b5f8a

2 files changed

Lines changed: 147 additions & 138 deletions

File tree

composer.json

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
"mezzio/mezzio-problem-details": "^1.19",
2525
"mezzio/mezzio-router": "^4.2",
2626
"psr/cache": "^3.0",
27-
"psr/container": "^1.1 || ^2.0",
27+
"psr/container": "^1.1 || ^2.0.2",
2828
"psr/http-factory": "^1.1",
2929
"psr/http-message": "^2.0",
30-
"psr/http-server-handler": "^1.0",
31-
"psr/http-server-middleware": "^1.0",
32-
"symfony/cache": "^6.4 || ^7.4 || ^8.0",
33-
"webmozart/assert": "^1.12 || ^2.0"
30+
"psr/http-server-handler": "^1.0.2",
31+
"psr/http-server-middleware": "^1.0.2",
32+
"symfony/cache": "^6.4 || ^7.4.8 || ^8.0",
33+
"webmozart/assert": "^1.12.1 || ^2.0"
3434
},
3535
"require-dev": {
3636
"codeception/c3": "^2.9",
@@ -39,24 +39,21 @@
3939
"codeception/module-phpbrowser": "^4.0",
4040
"codeception/module-rest": "^3.4.3",
4141
"codeception/module-webdriver": "^4.0.5",
42-
"friendsofphp/php-cs-fixer": "^3.94.2",
42+
"friendsofphp/php-cs-fixer": "^3.95.1",
4343
"maglnet/composer-require-checker": "^4.20",
4444
"phpbench/phpbench": "^1.6.1",
45-
"phpro/grumphp": "^2.19",
45+
"phpro/grumphp": "^2.20",
4646
"phpstan/extension-installer": "^1.4.3",
47-
"phpstan/phpstan": "^2.1.45",
47+
"phpstan/phpstan": "^2.1.51",
4848
"phpstan/phpstan-webmozart-assert": "^2.0.0",
49-
"rector/rector": "^2.3.9",
49+
"rector/rector": "^2.4.2",
5050
"roave/security-advisories": "dev-master",
51-
"webproject-xyz/codeception-module-ai-reporter": "^1.1.0"
51+
"webproject-xyz/codeception-module-ai-reporter": "^1.1.1"
5252
},
5353
"autoload": {
5454
"psr-4": {
5555
"WebProject\\PhpOpenApiMockServer\\": "src/"
56-
},
57-
"exclude-from-classmap": [
58-
"vendor/cebe/php-openapi/src/"
59-
]
56+
}
6057
},
6158
"autoload-dev": {
6259
"psr-4": {
@@ -81,13 +78,19 @@
8178
},
8279
"scripts": {
8380
"bench": "php -d opcache.enable_cli=1 vendor/bin/phpbench run tests/Benchmark --report=default",
84-
"cs:check": "php-cs-fixer fix --allow-risky=yes --sequential --dry-run --diff",
85-
"cs:fix": "php-cs-fixer fix --allow-risky=yes --sequential",
8681
"rector": "rector process --dry-run",
8782
"rector:fix": "rector process",
88-
"stan": "phpstan analyse --no-progress",
89-
"test": "php -d opcache.enable_cli=1 vendor/bin/codecept run --report",
90-
"test:build": "codecept build",
91-
"test:coverage": "XDEBUG_MODE=coverage codecept run --coverage --coverage-xml=coverage.xml --xml --report"
83+
"cs:check": "XDEBUG_MODE=off php-cs-fixer fix --allow-risky=yes --dry-run --diff --show-progress=dots",
84+
"cs:fix": "XDEBUG_MODE=off php-cs-fixer fix --show-progress=none --allow-risky=yes",
85+
"stan": "XDEBUG_MODE=off phpstan analyse --no-progress --no-ansi --memory-limit=-1",
86+
"test": "XDEBUG_MODE=off php -d opcache.enable_cli=1 vendor/bin/codecept run --report",
87+
"test:coverage": "XDEBUG_MODE=coverage codecept run --coverage --coverage-xml=coverage.xml --xml --report",
88+
"test:build": "XDEBUG_MODE=off codecept build",
89+
"qa": [
90+
"@test:build",
91+
"@cs:fix",
92+
"@test",
93+
"@stan"
94+
]
9295
}
9396
}

0 commit comments

Comments
 (0)