Skip to content

Commit

Permalink
Merge pull request #304 from mimmi20/dependabot/composer/master/minor…
Browse files Browse the repository at this point in the history
…-patch-dependencies-c3f907ba2c

composer(deps): bump the minor-patch-dependencies group with 3 updates
  • Loading branch information
mimmi20 authored Mar 12, 2024
2 parents 02aeced + c708fd0 commit 84d8214
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.{js,ts,cjs,cts,mjs,mts,json,json5,yaml,yml}]
[*.{js,ts,cjs,cts,mjs,mts,json,json5,yaml,yml,neon}]
indent_size = 2

[*.md]
Expand Down
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
# Yaml
*.yml text eol=lf
*.yaml text eol=lf
*.neon text eol=lf

# other
*.xml text eol=lf
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
skip-validate-composer: false
skip-phplint: false
skip-check-composer: false
dependency-analyser-options: "--ignore-dev-in-prod-deps"

install:
name: "Install Project"
Expand Down
6 changes: 2 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@
"require": {
"php": "^8.1.0",
"laminas/laminas-form": "^3.19.2",
"laminas/laminas-hydrator": "^4.15.0",
"laminas/laminas-inputfilter": "^2.29.0",
"laminas/laminas-validator": "^2.49.0",
"laminas/laminas-view": "^2.34.0"
},
"require-dev": {
Expand All @@ -38,10 +36,10 @@
"mimmi20/coding-standard": "^5.2.17",
"nikic/php-parser": "^v4.18.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.59",
"phpstan/phpstan": "^1.10.60",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-phpunit": "^1.3.16",
"phpunit/phpunit": "^10.5.11",
"phpunit/phpunit": "^10.5.12",
"psr/container": "^1.1.2 || ^2.0.2",
"rector/rector": "^1.0.2"
},
Expand Down
2 changes: 0 additions & 2 deletions src/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ public function getModuleDependencies(): array
{
return [
'Laminas\I18n',
'Laminas\Hydrator',
'Laminas\Validator',
'Laminas\InputFilter',
'Laminas\Form',
'Laminas\Navigation',
Expand Down
4 changes: 1 addition & 3 deletions tests/ModuleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,9 @@ public function testGetModuleDependencies(): void
$config = $module->getModuleDependencies();

self::assertIsArray($config);
self::assertCount(6, $config);
self::assertCount(4, $config);
self::assertArrayHasKey(0, $config);
self::assertContains('Laminas\I18n', $config);
self::assertContains('Laminas\Hydrator', $config);
self::assertContains('Laminas\Validator', $config);
self::assertContains('Laminas\InputFilter', $config);
self::assertContains('Laminas\Form', $config);
self::assertContains('Laminas\Navigation', $config);
Expand Down

0 comments on commit 84d8214

Please sign in to comment.