Skip to content
Merged
Changes from 1 commit
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
Next Next commit
Update branding in documentation
  • Loading branch information
Dan Wallis committed Sep 12, 2022
commit 4dd83639bb3cff0b11d7d6f0fdcd4905390e9d22
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Introduction

This is the MediaCT coding standard for Magento 2 projects. It is based on
the default MediaCT coding standard but some tests have been removed to create
This is the Youwe coding standard for Magento 2 projects. It is based on
the default Youwe coding standard but some tests have been removed to create
a workable and fast standard.

# Installation

Use composer to require the standard in a project.

```shell
composer require --dev mediact/coding-standard-magento2
composer require --dev youwe/coding-standard-magento2
```

To let PHPCS know that this standard should be used add a phpcs.xml file in the
Expand All @@ -18,20 +18,20 @@ root of the project.
```xml
<?xml version="1.0"?>
<ruleset>
<rule ref="./vendor/mediact/coding-standard-magento2/src/MediactMagento2"/>
<rule ref="./vendor/youwe/coding-standard-magento2/src/Magento2"/>
</ruleset>
```

# Integration with PHPStorm and automatic testing

The recommended way to enable the coding standard in PHPStorm and automatic
testing is by requiring the MediaCT testing suite in a project.
testing is by requiring the Youwe testing suite in a project.

```shell
composer require --dev mediact/testing-suite
composer require --dev youwe/testing-suite
```

For more information go to [MediaCT Testing Suite](https://github.com/mediact/testing-suite).
For more information go to [Youwe Testing Suite](https://github.com/YouweGit/testing-suite).

# Contribution guidelines

Expand Down