Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- [PR-46](https://github.com/itk-dev/serviceplatformen/pull/46)
Update symfony/string dependency

## [1.7.2] - 2025-11-24

- [PR-45](https://github.com/itk-dev/serviceplatformen/pull/45)
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
"itk-dev/azure-key-vault-php": "^1.0",
"jms/serializer": "^3.18",
"php-http/guzzle7-adapter": "^1.0",
"symfony/cache": "^5.4 || ^6.0",
"symfony/http-client": "^5.4 || ^6.0",
"symfony/options-resolver": "^5.4 || ^6.0",
"symfony/property-access": "^4.4 || ^5.4 || ^6.0",
"symfony/string": "^5.4 || ^6.0",
"symfony/uid": "^5.4 || ^6.0",
"symfony/cache": "^5.4 || ^6.0 || ^7.0",
"symfony/http-client": "^5.4 || ^6.0 || ^7.0",
"symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
"symfony/property-access": "^5.4 || ^6.0 || ^7.0",
"symfony/string": "^5.4 || ^6.0 || ^7.0",
"symfony/uid": "^5.4 || ^6.0 || ^7.0",
"wsdltophp/packagebase": "^5.0"
},
"require-dev": {
Expand All @@ -46,8 +46,8 @@
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.7",
"symfony/console": "^5.4 || ^6.0",
"symfony/mime": "^5.4 || ^6.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/mime": "^5.4 || ^6.0 || ^7.0",
"wsdltophp/packagegenerator": "^4.1"
},
"config": {
Expand Down
2 changes: 1 addition & 1 deletion src/Command/SF1500/SF1500LookupCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ protected function configure()
/**
* @throws SF1500Exception
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$options = $this->resolveOptions(
array_filter(array_filter($input->getOptions()), fn ($name) => isset($this->inputOptions[$name]), ARRAY_FILTER_USE_KEY)
Expand Down
6 changes: 3 additions & 3 deletions src/Command/SF1500/SF1500ReadCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ protected function configure()
&name=organisation
&secret=test
&version=bbcbd812-0d7c-420b-9b93-7318e3769578

If using path option make sure the path is relative to project root to the certificate file, e.g.
'/app/src/Command/SF1500/certificate.p12'

certificate-passphrase:
the passphrase for p12 certificate, i.e.
'XYZ'
Expand All @@ -79,7 +79,7 @@ protected function configure()
/**
* @throws SF1500Exception
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$options = $this->resolveOptions(
array_filter(
Expand Down
2 changes: 1 addition & 1 deletion src/Command/SF1500/SF1500SearchCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ protected function configure()
/**
* @throws SF1500Exception
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$options = $this->resolveOptions(
array_filter(
Expand Down
2 changes: 1 addition & 1 deletion src/Command/SF1601/KombiPostAfsendCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ protected function configure()
$this->inputOptions = array_combine(array_map(fn (InputOption $option) => $option->getName(), $inputOptions), $inputOptions);
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$this->setLogger(new ConsoleLogger($output));

Expand Down
2 changes: 1 addition & 1 deletion src/Command/SF1601/PostForespoergCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected function configure()
$this->buildInputOptions($definition);
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$options = $this->resolveOptions(
array_filter(
Expand Down
Loading