Skip to content

Commit bd36462

Browse files
behzadspclaude
andcommitted
Rebrand from renoki-co to monovm
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 609ba22 commit bd36462

File tree

178 files changed

+949
-945
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

178 files changed

+949
-945
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ coverage.xml
55
.DS_Store
66
.idea/
77
.phpunit.result.cache
8+
9+
# Claude
10+
CLAUDE.md
11+
.claude/

PATCH_SUPPORT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ JSON Patch allows you to apply a series of operations to modify a resource. It s
1616
### Usage
1717

1818
```php
19-
use RenokiCo\PhpK8s\Patches\JsonPatch;
19+
use MonoVM\PhpK8s\Patches\JsonPatch;
2020

2121
// Create a JSON Patch
2222
$patch = new JsonPatch();
@@ -44,7 +44,7 @@ JSON Merge Patch provides a simpler way to modify resources by merging a patch o
4444
### JSON Merge Path Usage
4545

4646
```php
47-
use RenokiCo\PhpK8s\Patches\JsonMergePatch;
47+
use MonoVM\PhpK8s\Patches\JsonMergePatch;
4848

4949
// Create a JSON Merge Patch
5050
$patch = new JsonMergePatch();

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
PHP K8s
22
=======
33

4-
![CI](https://github.com/renoki-co/php-k8s/workflows/CI/badge.svg?branch=master)
5-
[![codecov](https://codecov.io/gh/renoki-co/php-k8s/branch/master/graph/badge.svg)](https://codecov.io/gh/renoki-co/php-k8s/branch/master)
4+
![CI](https://github.com/monovm/php-k8s/workflows/CI/badge.svg?branch=master)
5+
[![codecov](https://codecov.io/gh/monovm/php-k8s/branch/master/graph/badge.svg)](https://codecov.io/gh/monovm/php-k8s/branch/master)
66
[![StyleCI](https://github.styleci.io/repos/259992525/shield?branch=master)](https://github.styleci.io/repos/259992525)
7-
[![Maintainability](https://api.codeclimate.com/v1/badges/f1904ccbef8809c9d93b/maintainability)](https://codeclimate.com/github/renoki-co/php-k8s/maintainability)
8-
[![License](https://poser.pugx.org/renoki-co/php-k8s/license)](https://packagist.org/packages/renoki-co/php-k8s)
7+
[![Maintainability](https://api.codeclimate.com/v1/badges/f1904ccbef8809c9d93b/maintainability)](https://codeclimate.com/github/monovm/php-k8s/maintainability)
8+
[![License](https://poser.pugx.org/monovm/php-k8s/license)](https://packagist.org/packages/monovm/php-k8s)
99

10-
[![Latest Stable Version](https://poser.pugx.org/renoki-co/php-k8s/v/stable)](https://packagist.org/packages/renoki-co/php-k8s)
11-
[![Total Downloads](https://poser.pugx.org/renoki-co/php-k8s/downloads)](https://packagist.org/packages/renoki-co/php-k8s)
12-
[![Monthly Downloads](https://poser.pugx.org/renoki-co/php-k8s/d/monthly)](https://packagist.org/packages/renoki-co/php-k8s)
10+
[![Latest Stable Version](https://poser.pugx.org/monovm/php-k8s/v/stable)](https://packagist.org/packages/monovm/php-k8s)
11+
[![Total Downloads](https://poser.pugx.org/monovm/php-k8s/downloads)](https://packagist.org/packages/monovm/php-k8s)
12+
[![Monthly Downloads](https://poser.pugx.org/monovm/php-k8s/d/monthly)](https://packagist.org/packages/monovm/php-k8s)
1313

1414
![v1.32.9 K8s Version](https://img.shields.io/badge/K8s%20v1.32.9-Ready-%23326ce5?colorA=306CE8&colorB=green)
1515
![v1.33.5 K8s Version](https://img.shields.io/badge/K8s%20v1.33.5-Ready-%23326ce5?colorA=306CE8&colorB=green)

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "renoki-co/php-k8s",
2+
"name": "monovm/php-k8s",
33
"description": "Control your Kubernetes clusters with this PHP-based Kubernetes client. It supports any form of authentication, the exec API, and it has an easy implementation for CRDs.",
44
"keywords": [
55
"laravel",
@@ -15,7 +15,7 @@
1515
"kube"
1616
],
1717
"license": "Apache-2.0",
18-
"homepage": "https://github.com/renoki-co/php-k8s",
18+
"homepage": "https://github.com/monovm/php-k8s",
1919
"authors": [
2020
{
2121
"name": "Alex Renoki",
@@ -38,12 +38,12 @@
3838
},
3939
"autoload": {
4040
"psr-4": {
41-
"RenokiCo\\PhpK8s\\": "src/"
41+
"MonoVM\\PhpK8s\\": "src/"
4242
}
4343
},
4444
"autoload-dev": {
4545
"psr-4": {
46-
"RenokiCo\\PhpK8s\\Test\\": "tests"
46+
"MonoVM\\PhpK8s\\Test\\": "tests"
4747
}
4848
},
4949
"scripts": {

examples/patch_examples.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
require_once __DIR__.'/../vendor/autoload.php';
44

5-
use RenokiCo\PhpK8s\KubernetesCluster;
6-
use RenokiCo\PhpK8s\Patches\JsonMergePatch;
7-
use RenokiCo\PhpK8s\Patches\JsonPatch;
5+
use MonoVM\PhpK8s\KubernetesCluster;
6+
use MonoVM\PhpK8s\Patches\JsonMergePatch;
7+
use MonoVM\PhpK8s\Patches\JsonPatch;
88

99
// Create a cluster connection
1010
$cluster = new KubernetesCluster('https://your-cluster-endpoint');

src/Contracts/Attachable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace RenokiCo\PhpK8s\Contracts;
3+
namespace MonoVM\PhpK8s\Contracts;
44

55
interface Attachable
66
{

src/Contracts/Dnsable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace RenokiCo\PhpK8s\Contracts;
3+
namespace MonoVM\PhpK8s\Contracts;
44

55
interface Dnsable
66
{

src/Contracts/Executable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace RenokiCo\PhpK8s\Contracts;
3+
namespace MonoVM\PhpK8s\Contracts;
44

55
interface Executable
66
{

src/Contracts/InteractsWithK8sCluster.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace RenokiCo\PhpK8s\Contracts;
3+
namespace MonoVM\PhpK8s\Contracts;
44

55
interface InteractsWithK8sCluster
66
{

src/Contracts/Loggable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace RenokiCo\PhpK8s\Contracts;
3+
namespace MonoVM\PhpK8s\Contracts;
44

55
interface Loggable
66
{

0 commit comments

Comments
 (0)