Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 32d80826 authored by Ronak Patel's avatar Ronak Patel
Browse files

composer added

parent 561fe0eb
Loading
Loading
Loading
Loading
Loading

.php-cs-fixer.dist.php

0 → 100644
+18 −0
Original line number Diff line number Diff line
<?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;
+6 −1
Original line number Diff line number Diff line
{
    "require-dev": {
        "nextcloud/coding-standard": "^1.0"
        "nextcloud/coding-standard": "^1.0",
        "friendsofphp/php-cs-fixer": "^3.13"
    },
    "scripts": {
        "cs:check": "php-cs-fixer fix --dry-run --diff",
        "cs:fix": "php-cs-fixer fix"
    },
    "require": {
        "sendgrid/sendgrid": "^8.0"