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
15 changes: 3 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,25 +103,16 @@ jobs:
strategy:
matrix:
include:
-
php-version: '8.1'
composer-options: '--prefer-stable'
symfony-version: '6.3'
-
php-version: '8.2'
composer-options: '--prefer-stable'
symfony-version: '^6.4'

-
php-version: '8.2'
composer-options: '--prefer-stable'
symfony-version: '^6.4'
symfony-version: '^7.4'
remove-http-client: 'yes'

-
php-version: '8.2'
php-version: '8.4'
composer-options: '--prefer-stable'
symfony-version: '^7.0'
symfony-version: '^8.0'

steps:
-
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
include vendor/rollerscapes/standards/Makefile

phpunit:
./vendor/bin/phpunit
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.2",
"jeremykendall/php-domain-parser": "^6.3",
"psr/simple-cache": "^1.0 || ^3.0",
"symfony/cache": "^6.3 || ^7.0"
"symfony/cache": "^7.4 || ^8.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"nyholm/symfony-bundle-test": "^2.0",
"phpunit/phpunit": "^9.6.13",
"matthiasnoback/symfony-dependency-injection-test": "^5.1 || ^6.2",
"nyholm/symfony-bundle-test": "^2.0 || ^3.1",
"phpunit/phpunit": "^10.0",
"rollerscapes/standards": "^1.0",
"symfony/console": "^6.3",
"symfony/framework-bundle": "^6.3 || ^7.0",
"symfony/http-client": "^6.3 || ^7.0",
"symfony/phpunit-bridge": "^6.3 || ^7.0"
"symfony/console": "^7.4 || ^8.0",
"symfony/framework-bundle": "^7.4 || ^8.0",
"symfony/http-client": "^7.4 || ^8.0",
"symfony/phpunit-bridge": "^7.4 || ^8.0"
},
"conflict": {
"symfony/framework-bundle": "<6.0"
"symfony/framework-bundle": "<7.4"
},
"suggest": {
"rollerworks/pdb-validator": "PHP domain-parser Constraints for Symfony Validator component"
Expand Down
2 changes: 1 addition & 1 deletion tests/Bundle/BundleInitializationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
return TestKernel::class;
}

protected static function createKernel(array $options = []): KernelInterface

Check failure on line 34 in tests/Bundle/BundleInitializationTest.php

View workflow job for this annotation

GitHub Actions / PhpStan (8.2)

Method Rollerworks\Component\PdbSfBridge\Tests\Bundle\BundleInitializationTest::createKernel() has parameter $options with no value type specified in iterable type array.
{
/** @var TestKernel $kernel */
$kernel = parent::createKernel($options);
$kernel->addTestCompilerPass(new class implements CompilerPassInterface {
public function process(ContainerBuilder $container)
public function process(ContainerBuilder $container): void
{
$container->findDefinition('rollerworks_pdb.pdb_manager')->setPublic(true);
}
Expand Down
Loading