Skip to content
This repository was archived by the owner on Dec 17, 2022. It is now read-only.

Commit 8ddd6e2

Browse files
author
benjaminmal
committed
Change package name
1 parent acfd710 commit 8ddd6e2

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<h1 align="center">Coding Standard</h1>
22

3-
[![CI](https://github.com/e-lodgy/coding-standard/actions/workflows/ci.yaml/badge.svg)](https://github.com/e-lodgy/coding-standard/actions/workflows/ci.yaml)
3+
[![CI](https://github.com/benjaminmal/coding-standard/actions/workflows/ci.yaml/badge.svg)](https://github.com/benjaminmal/coding-standard/actions/workflows/ci.yaml)
44

5-
Coding standard configuration used by E-Lodgy.
5+
Coding standard configuration used by me.
66

77
Installation & usage
88
--------------------
99
1. Install this package:
1010
```bash
11-
$ composer require --dev e-lodgy/coding-standard
11+
$ composer require --dev benjaminmal/coding-standard
1212
```
1313

1414
2. Import the configuration file in your `ecs.php`:
1515
```php
16-
$config->import('vendor/e-lodgy/coding-standard/ecs.php');
16+
$config->import('vendor/benjaminmal/coding-standard/ecs.php');
1717
```
1818

1919
Example config (ecs.php)
@@ -22,6 +22,6 @@ Example config (ecs.php)
2222
use Symplify\EasyCodingStandard\Config\ECSConfig;
2323

2424
return static function (ECSConfig $config): void {
25-
$config->import('vendor/e-lodgy/coding-standard/ecs.php');
25+
$config->import('vendor/benjaminmal/coding-standard/ecs.php');
2626
};
2727
```

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "e-lodgy/coding-standard",
2+
"name": "benjaminmal/coding-standard",
33
"description": "Coding standard used in E-Lodgy",
44
"type": "library",
55
"license": "MIT",
@@ -15,6 +15,6 @@
1515
"symplify/easy-coding-standard": "^9.4 || ^10.0 || ^11.0"
1616
},
1717
"autoload-dev": {
18-
"Elodgy\\CodingStandard\\Tests\\": "tests/"
18+
"Benjaminmal\\CodingStandard\\Tests\\": "tests/"
1919
}
2020
}

renovate.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"extends": [
3-
"github>e-lodgy/renovate-config:library"
3+
"github>benjaminmal/renovate-config:library"
44
]
55
}

tests/TestClass.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Elodgy\CodingStandard\Tests;
5+
namespace Benjaminmal\CodingStandard\Tests;
66

77
class TestClass
88
{

0 commit comments

Comments
 (0)