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
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
*.webp binary
*.bmp binary
*.ttf binary
*.blp binary
*.db2 binary

# Ignoring files for distribution archieves
.github/ export-ignore
Expand Down
12 changes: 8 additions & 4 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>WyriHaximus/renovate-config:php-package-dev"
]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>WyriHaximus/renovate-config:php-package-dev"
],
"constraints": {
"php": "8.4.x",
"composer": "2.x"
}
}
115 changes: 85 additions & 30 deletions Makefile

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"require": {
"php": "^8.4",
"ext-json": "^8.4",
"mammatus/groups": "^0.1.4",
"mammatus/groups": "^0.2.0",
"symfony/yaml": "^7.4.0"
},
"require-dev": {
Expand Down
28 changes: 14 additions & 14 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion etc/qa/infection.json5
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"timeout": 120,
"source": {
"directories": [
"src"
"../../src"
]
},
"logs": {
Expand Down
4 changes: 2 additions & 2 deletions src/Helm/Values/Groups.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Mammatus\Kubernetes\Events\Helm\Values;

use Mammatus\Groups\Attributes\Group as GroupAttribute;
use Mammatus\Groups\Generated\AbstractGroups;
use Mammatus\Groups\Groups as GeneratedGroups;
use Mammatus\Kubernetes\Events\Helm\Values\Groups\Group;

use function array_key_exists;
Expand All @@ -17,7 +17,7 @@ final class Groups

public function __construct()
{
foreach (AbstractGroups::groups() as $group) {
foreach (GeneratedGroups::groups() as $group) {
$this->groups[$group->name] = new Group($group);
}
}
Expand Down
Loading