nextcloud-updater/vendor/nextcloud/coding-standard
John Molakvoæ 3302797ac7
fix: update composer deps and box build workflow
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2023-06-08 17:58:35 +02:00
..
.github/workflows fix: update composer deps and box build workflow 2023-06-08 17:58:35 +02:00
src fix: update composer deps and box build workflow 2023-06-08 17:58:35 +02:00
.gitignore fix: update composer deps and box build workflow 2023-06-08 17:58:35 +02:00
.php-cs-fixer.dist.php fix: update composer deps and box build workflow 2023-06-08 17:58:35 +02:00
CHANGELOG.md fix: update composer deps and box build workflow 2023-06-08 17:58:35 +02:00
LICENSE fix: update composer deps and box build workflow 2023-06-08 17:58:35 +02:00
README.md fix: update composer deps and box build workflow 2023-06-08 17:58:35 +02:00
composer.json fix: update composer deps and box build workflow 2023-06-08 17:58:35 +02:00

README.md

Nextcloud Coding Standard

Nextcloud coding standards for the php cs fixer.

Installation

Add the package to your dev dependencies

composer require --dev nextcloud/coding-standard

and create a .php-cs-fixer.dist.php like

<?php

declare(strict_types=1);

require_once './vendor/autoload.php';

use Nextcloud\CodingStandard\Config;

$config = new Config();
$config
	->getFinder()
	->ignoreVCSIgnored(true)
	->notPath('build')
	->notPath('l10n')
	->notPath('src')
	->notPath('vendor')
	->in(__DIR__);
return $config;

To run the fixer you first have to install it. Then you can run php-cs-fixer fix to apply all automated fixes.

For convenience you may add it to the scripts section of your composer.json:

{
    "scripts": {
        "cs:check": "php-cs-fixer fix --dry-run --diff",
        "cs:fix": "php-cs-fixer fix"
    }
}

Note: Don't forget to exclude .php_cs.dist in your build scripts.

Upgrade from v0.x to v1.0

With v1.0 php-cs-fixer was updated from v2 to v3. You'll have to adjust your app slightly:

  • Rename .php_cs.dist to .php-cs-fixer.dist.php
  • Add .php-cs-fixer.cache to your ignore files