Skip to content

Commit

Permalink
Clean up composer and license setup
Browse files Browse the repository at this point in the history
  • Loading branch information
tsdicloud committed Aug 9, 2023
1 parent b1ec6fc commit 0d56284
Show file tree
Hide file tree
Showing 6 changed files with 3,531 additions and 12 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.idea
*.iml
/vendor/
/build/
node_modules/
/.php_cs.cache
/.php-cs-fixer.cache
/lib/Vendor
tests/.phpunit.result.cache
/vendor-bin/mozart/vendor
.DS_Store
19 changes: 19 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

declare(strict_types=1);

require_once './vendor/autoload.php';

use Nextcloud\CodingStandard\Config;

$config = new Config();
$config
->getFinder()
->notPath('build')
->notPath('node_modules')
->notPath('l10n')
->notPath('src')
->notPath('vendor')
->notPath('lib/Vendor')
->in(__DIR__);
return $config;
Loading

0 comments on commit 0d56284

Please sign in to comment.