@sinemacula/coding-standards 1.17.0 → 1.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  [![Latest Stable Version](https://img.shields.io/packagist/v/sinemacula/coding-standards.svg)](https://packagist.org/packages/sinemacula/coding-standards)
4
4
  [![npm Version](https://img.shields.io/npm/v/@sinemacula/coding-standards.svg)](https://www.npmjs.com/package/@sinemacula/coding-standards)
5
+ [![Build Status](https://github.com/sinemacula/coding-standards/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/sinemacula/coding-standards/actions/workflows/tests.yml)
6
+ [![Quality Gates](https://github.com/sinemacula/coding-standards/actions/workflows/quality-gates.yml/badge.svg?branch=master)](https://github.com/sinemacula/coding-standards/actions/workflows/quality-gates.yml)
5
7
  [![Maintainability](https://qlty.sh/gh/sinemacula/projects/coding-standards/maintainability.svg)](https://qlty.sh/gh/sinemacula/projects/coding-standards)
6
8
  [![Code Coverage](https://qlty.sh/gh/sinemacula/projects/coding-standards/coverage.svg)](https://qlty.sh/gh/sinemacula/projects/coding-standards)
7
9
  [![Total Downloads](https://img.shields.io/packagist/dt/sinemacula/coding-standards.svg)](https://packagist.org/packages/sinemacula/coding-standards)
@@ -357,12 +359,14 @@ single-line blocks included. The type-checked layer adds `@typescript-eslint/exp
357
359
  ## Testing
358
360
 
359
361
  ```bash
360
- composer test # PHPUnit suite for the custom sniffs and PHPStan rule
361
- composer test:coverage # suite with Clover coverage output
362
- composer analyse # PHPStan static analysis
363
- composer check # static analysis and lint via qlty
364
- composer format # format via qlty
365
- composer smells # duplication / complexity smells via qlty
362
+ composer test # PHPUnit suite for the custom sniffs and PHPStan rule
363
+ composer test:coverage # suite with Clover coverage output
364
+ composer test:mutation # Infection mutation gate (min MSI 90)
365
+ composer test:mutation:full # full mutation suite without thresholds
366
+ composer analyse # PHPStan static analysis
367
+ composer check # static analysis and lint via qlty
368
+ composer format # format via qlty
369
+ composer smells # duplication / complexity smells via qlty
366
370
  ```
367
371
 
368
372
  ## Changelog
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinemacula/coding-standards",
3
- "version": "1.17.0",
3
+ "version": "1.18.0",
4
4
  "description": "Centralized coding standards, static analysis configurations, and code quality tooling for all Sine Macula repositories.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Ben Carey <bdmc@sinemacula.co.uk>",