Skip to content

Commit b8805a2

Browse files
authored
Merge pull request #60 from MacPaw/fix/UpdateCi
Fix/update ci
2 parents 9252b17 + 96bcd87 commit b8805a2

File tree

8 files changed

+20
-65
lines changed

8 files changed

+20
-65
lines changed

.github/workflows/ci.yaml

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,35 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
php:
15-
- '7.4'
16-
- '8.0'
1715
- '8.1'
16+
- '8.2'
1817
coverage: ['none']
1918
symfony-versions:
20-
- '3.4.*'
2119
- '4.4.*'
22-
- '5.1.*'
23-
- '5.2.*'
24-
- '5.3.*'
2520
- '5.4.*'
21+
- '6.0.*'
22+
- '6.1.*'
23+
- '6.2.*'
2624
include:
25+
- php: '7.4'
26+
symfony-versions: '^3.4'
27+
coverage: 'none'
28+
- php: '7.4'
29+
symfony-versions: '^4.4'
30+
coverage: 'none'
31+
- php: '7.4'
32+
symfony-versions: '^5.4'
33+
coverage: 'none'
2734
- php: '8.0'
28-
symfony-versions: '^6.0'
35+
symfony-versions: '^5.4'
2936
coverage: 'none'
30-
- php: '8.1'
37+
- php: '8.0'
3138
symfony-versions: '^6.0'
3239
coverage: 'none'
3340
- description: 'Log Code Coverage'
34-
php: '8.1'
41+
php: '8.2'
3542
coverage: 'xdebug'
36-
symfony-versions: '^5.2'
43+
symfony-versions: '^6.2'
3744

3845
name: PHP ${{ matrix.php }} Symfony ${{ matrix.symfony-versions }} ${{ matrix.description }}
3946
steps:

.github/workflows/gitleaks.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

commitlint.config.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"require-dev": {
3636
"ext-json": "*",
37-
"phpstan/phpstan": "0.12.*",
37+
"phpstan/phpstan": "1.9.*",
3838
"squizlabs/php_codesniffer": "3.5.*",
3939
"symfony/phpunit-bridge": "^3.4 || ^4.1.12 || ^5.0 || ^6.0",
4040
"phpunit/phpunit": "^8.5 || ^9.0",

package.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

phpstan-baseline.neon

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ parameters:
44
message: '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition::children\(\).#'
55
count: 1
66
path: ./src/DependencyInjection
7-
-
8-
message: '#Call to an undefined method object::getConnection\(\).#'
9-
count: 1
10-
path: ./src/Check/DoctrineCheck
117
-
128
message: '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder::root\(\).#'
139
count: 1

phpstan.neon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ includes:
22
- phpstan-baseline.neon
33

44
parameters:
5-
level: max
5+
level: 5
66
paths:
7-
- src/
7+
- src

src/DependencyInjection/SymfonyHealthCheckExtension.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@
1414

1515
class SymfonyHealthCheckExtension extends Extension
1616
{
17-
/**
18-
* @param array<array> $configs
19-
*
20-
* {@inheritdoc}
21-
*/
2217
public function load(array $configs, ContainerBuilder $container): void
2318
{
2419
$configuration = new Configuration();
@@ -30,9 +25,6 @@ public function load(array $configs, ContainerBuilder $container): void
3025
$this->loadHealthChecks($config, $loader, $container);
3126
}
3227

33-
/**
34-
* @param array<array> $config
35-
*/
3628
private function loadHealthChecks(
3729
array $config,
3830
XmlFileLoader $loader,

0 commit comments

Comments
 (0)