Skip to content

Commit

Permalink
update matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
priyadi committed Sep 23, 2023
1 parent e184037 commit f16b5c2
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 28 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php: [ '8.1', '8.2' ]
symfony: [ '6.*' ]
php: [ '8.2' ]
symfony: [ '6.3' ]
dep: [highest,lowest]

runs-on: ${{ matrix.operating-system }}
Expand Down
30 changes: 15 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,26 @@
"nyholm/psr7": "^1.8",
"oneup/uploader-bundle": "^4.0",
"php": "^8.1",
"php-http/discovery": "^1",
"php-http/discovery": "^1.15",
"psr/container": "^2.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0",
"rekalogika/direct-property-access": "^1.1.2 || ^1.2",
"rekalogika/reconstitutor": "^0.1",
"rekalogika/temporary-url-bundle": "^1.1",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/config": "^6.2",
"symfony/dependency-injection": "^6.2",
"symfony/deprecation-contracts": "^3.1",
"symfony/filesystem": "^6.0",
"symfony/form": "^6.0",
"symfony/http-foundation": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/mime": "^6.0",
"symfony/property-access": "^6.0",
"symfony/serializer": "^6.0",
"symfony/filesystem": "^6.2",
"symfony/form": "^6.2",
"symfony/http-foundation": "^6.2",
"symfony/http-kernel": "^6.2",
"symfony/mime": "^6.2",
"symfony/property-access": "^6.2",
"symfony/serializer": "^6.2",
"symfony/service-contracts": "^3.3",
"symfony/translation-contracts": "^3.1",
"symfony/validator": "^6.0",
"symfony/validator": "^6.2",
"thecodingmachine/safe": "^2.5",
"twig/twig": "^2.12|^3.0",
"webmozart/assert": "^1.11"
Expand All @@ -57,10 +57,10 @@
"phpunit/phpunit": "^9.5",
"psalm/plugin-mockery": "^1.1",
"psalm/plugin-phpunit": "^0.18.4",
"symfony/framework-bundle": "^6.0",
"symfony/phpunit-bridge": "^6.0",
"symfony/routing": "^6.0",
"symfony/yaml": "^6.3",
"symfony/framework-bundle": "^6.2",
"symfony/phpunit-bridge": "^6.2",
"symfony/routing": "^6.2",
"symfony/yaml": "^6.2",
"symplify/monorepo-builder": "^11.2",
"vimeo/psalm": "^5.15"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/file-association/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"rekalogika/file-association-contracts": "self.version",
"rekalogika/file-contracts": "self.version",
"rekalogika/reconstitutor": "^0.1",
"symfony/property-access": "^6.0"
"symfony/property-access": "^6.2"
}
}
8 changes: 4 additions & 4 deletions packages/file-bundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
"psr/container": "^2.0",
"rekalogika/file": "self.version",
"rekalogika/file-contracts": "self.version",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/http-kernel": "^6.0"
"symfony/config": "^6.2",
"symfony/dependency-injection": "^6.2",
"symfony/http-kernel": "^6.2"
},
"require-dev": {
"symfony/routing":"^6.0"
"symfony/routing":"^6.2"
},
"suggest": {
"rekalogika/file-image": "Allows easy resizing image",
Expand Down
2 changes: 1 addition & 1 deletion packages/file-server/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
"rekalogika/file-contracts": "self.version",
"rekalogika/file-symfony-bridge": "self.version",
"rekalogika/temporary-url-bundle": "^1.1",
"symfony/http-foundation": "^6.0"
"symfony/http-foundation": "^6.2"
}
}
6 changes: 3 additions & 3 deletions packages/file-symfony-bridge/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"rekalogika/file": "self.version",
"rekalogika/file-contracts": "self.version",
"rekalogika/file-metadata-contracts": "self.version",
"symfony/form": "^6.0",
"symfony/http-foundation": "^6.0",
"symfony/validator": "^6.0"
"symfony/form": "^6.2",
"symfony/http-foundation": "^6.2",
"symfony/validator": "^6.2"
}
}
2 changes: 1 addition & 1 deletion packages/file/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"require": {
"php": "^8.1",
"cardinalby/content-disposition": "^1.1",
"php-http/discovery": "^1",
"php-http/discovery": "^1.15",
"psr/http-message": "^1.0",
"psr/http-factory-implementation": "^1.0",
"fileeye/mimemap": "^2.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/TestKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function registerBundles(): iterable
yield new FrameworkBundle();
}

public function registerContainerConfiguration(LoaderInterface $loader)
public function registerContainerConfiguration(LoaderInterface $loader): void
{
$loader->load(function (ContainerBuilder $container) {
$container->loadFromExtension('rekalogika_file', $this->config);
Expand Down

0 comments on commit f16b5c2

Please sign in to comment.