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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ilyes512/code-style
# specsnl/code-style

An ECS (Easy Coding Standards) codestyle package.

Expand All @@ -7,7 +7,7 @@ An ECS (Easy Coding Standards) codestyle package.
You can install the package via composer:

```bash
composer require --dev ilyes512/code-style:^2.0
composer require --dev specsnl/code-style:^2.0
```

## Usage
Expand Down Expand Up @@ -38,7 +38,7 @@ Add a `phpcs.xml` file to the root of your project. The below config example is
<exclude-pattern>resources/js</exclude-pattern>
<exclude-pattern>coverage</exclude-pattern>

<rule ref="Ilyes512CodingStandard"/>
<rule ref="SpecsCodingStandard"/>
</ruleset>
```

Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "ilyes512/code-style",
"name": "specsnl/code-style",
"type": "phpcodesniffer-standard",
"description": "An PHP_CodeSniffer codestyle package.",
"keywords": [
Expand All @@ -17,11 +17,11 @@
},
"scripts": {
"docs": "phpcs --standard=PSR12 --generator=html > docs.html",
"listsniffs": "phpcs --standard=./Ilyes512CodingStandard/ruleset.xml -e"
"listsniffs": "phpcs --standard=./SpecsCodingStandard/ruleset.xml -e"
},
"scripts-descriptions": {
"docs": "Generate the PSR12 documentation",
"listsniffs": "List all sniffs used by Ilyes512CodingStandard"
"listsniffs": "List all sniffs used by SpecsCodingStandard"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down