Skip to content

Commit

Permalink
Merge pull request #61 from MacPaw/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
Yozhef committed Jan 12, 2023
2 parents c36c28d + b8805a2 commit c2f17c1
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 65 deletions.
27 changes: 17 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,35 @@ jobs:
fail-fast: false
matrix:
php:
- '7.4'
- '8.0'
- '8.1'
- '8.2'
coverage: ['none']
symfony-versions:
- '3.4.*'
- '4.4.*'
- '5.1.*'
- '5.2.*'
- '5.3.*'
- '5.4.*'
- '6.0.*'
- '6.1.*'
- '6.2.*'
include:
- php: '7.4'
symfony-versions: '^3.4'
coverage: 'none'
- php: '7.4'
symfony-versions: '^4.4'
coverage: 'none'
- php: '7.4'
symfony-versions: '^5.4'
coverage: 'none'
- php: '8.0'
symfony-versions: '^6.0'
symfony-versions: '^5.4'
coverage: 'none'
- php: '8.1'
- php: '8.0'
symfony-versions: '^6.0'
coverage: 'none'
- description: 'Log Code Coverage'
php: '8.1'
php: '8.2'
coverage: 'xdebug'
symfony-versions: '^5.2'
symfony-versions: '^6.2'

name: PHP ${{ matrix.php }} Symfony ${{ matrix.symfony-versions }} ${{ matrix.description }}
steps:
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/gitleaks.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions commitlint.config.js

This file was deleted.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"require-dev": {
"ext-json": "*",
"phpstan/phpstan": "0.12.*",
"phpstan/phpstan": "1.9.*",
"squizlabs/php_codesniffer": "3.5.*",
"symfony/phpunit-bridge": "^3.4 || ^4.1.12 || ^5.0 || ^6.0",
"phpunit/phpunit": "^8.5 || ^9.0",
Expand Down
21 changes: 0 additions & 21 deletions package.json

This file was deleted.

4 changes: 0 additions & 4 deletions phpstan-baseline.neon
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ parameters:
message: '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition::children\(\).#'
count: 1
path: ./src/DependencyInjection
-
message: '#Call to an undefined method object::getConnection\(\).#'
count: 1
path: ./src/Check/DoctrineCheck
-
message: '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder::root\(\).#'
count: 1
Expand Down
4 changes: 2 additions & 2 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ includes:
- phpstan-baseline.neon

parameters:
level: max
level: 5
paths:
- src/
- src
8 changes: 0 additions & 8 deletions src/DependencyInjection/SymfonyHealthCheckExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@

class SymfonyHealthCheckExtension extends Extension
{
/**
* @param array<array> $configs
*
* {@inheritdoc}
*/
public function load(array $configs, ContainerBuilder $container): void
{
$configuration = new Configuration();
Expand All @@ -30,9 +25,6 @@ public function load(array $configs, ContainerBuilder $container): void
$this->loadHealthChecks($config, $loader, $container);
}

/**
* @param array<array> $config
*/
private function loadHealthChecks(
array $config,
XmlFileLoader $loader,
Expand Down

0 comments on commit c2f17c1

Please sign in to comment.