Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ js/
richdocuments.zip
build/
vendor/
/vendor-bin/**/vendor/
.php-cs-fixer.cache
cypress/screenshots/

Expand Down
2 changes: 2 additions & 0 deletions .nextcloudignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ Makefile
mkdocs.yml
node_modules
psalm.xml
rector.php
run-eslint.sh
screenshots
src
tests
tsconfig.json
webpack.*
vendor-bin/
1 change: 1 addition & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@
->notPath('src')
->notPath('node_modules')
->notPath('vendor')
->notPath('tests/stubs/')
->in(__DIR__);
return $config;
1 change: 1 addition & 0 deletions appinfo/routes.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
Expand Down
10 changes: 9 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"psalm:update-baseline": "psalm.phar --threads=1 --update-baseline --set-baseline=tests/psalm-baseline.xml",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"test:unit": "vendor/bin/phpunit -c tests/phpunit.xml"
"test:unit": "vendor/bin/phpunit -c tests/phpunit.xml",
"rector": "rector --config=rector.php && composer cs:fix"
},
"autoload" : {
"psr-4": {
Expand All @@ -54,5 +55,12 @@
"psr-4": {
"OCP\\": "vendor/nextcloud/ocp/OCP"
}
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"target-directory": "vendor-bin",
"forward-command": true
}
}
}
Loading
Loading