Skip to content

Commit

Permalink
Merge pull request #172 from TeraIT-at/master
Browse files Browse the repository at this point in the history
push symfony to support version ^7.0
  • Loading branch information
goetas authored Mar 22, 2024
2 parents 09d550e + ec0db6c commit 95db4b6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
"license": "MIT",
"require": {
"php": ">=7.2|^8.0",
"symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0",
"symfony/dependency-injection": "^2.2|^3.0|^4.0|^5.0|^6.0",
"symfony/yaml": "^2.2|^3.0|^4.0|^5.0|^6.0",
"symfony/config": "^2.2|^3.0|^4.0|^5.0|^6.0",
"symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^2.2|^3.0|^4.0|^5.0|^6.0|^7.0",
"symfony/yaml": "^2.2|^3.0|^4.0|^5.0|^6.0|^7.0",
"symfony/config": "^2.2|^3.0|^4.0|^5.0|^6.0|^7.0",
"goetas-webservices/xsd-reader": "^0.3.7 | ^0.4.1",
"doctrine/inflector": "^2.0",
"laminas/laminas-code": "^3.3.2|^4.0",
Expand All @@ -32,7 +32,7 @@
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0",
"jms/serializer": "^1.9|^2.0|^3.0",
"goetas-webservices/xsd2php-runtime": "^0.2.13@dev",
"symfony/validator": "^2.3.24|^3.0|^4.0|^5.0|^6.0",
"symfony/validator": "^2.3.24|^3.0|^4.0|^5.0|^6.0|^7.0",
"dms/phpunit-arraysubset-asserts": "^0.3.1"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/Command/Convert.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected function configure()
/**
* @see Console\Command\Command
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$this->loadConfigurations($input->getArgument('config'));
$src = $input->getArgument('src');
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class Configuration implements ConfigurationInterface
{
public function getConfigTreeBuilder()
public function getConfigTreeBuilder(): TreeBuilder
{
$treeBuilder = new TreeBuilder('xsd2php');

Expand Down

0 comments on commit 95db4b6

Please sign in to comment.