Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
chore: Move cs-fixer in a vendor-bin as well
Signed-off-by: Côme Chilliet <[email protected]>
  • Loading branch information
come-nc committed Apr 10, 2025
commit cf9bc97243d75fbb5c534c3f2c38e57e8ccf8b9c
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: AGPL-3.0-or-later
build
/vendor/
vendor/
.php_cs.cache
.php-cs-fixer.cache

Expand Down
4 changes: 3 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?php

declare(strict_types=1);

/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
require_once './vendor/autoload.php';

require_once './vendor-bin/cs-fixer/vendor/autoload.php';

use Nextcloud\CodingStandard\Config;

Expand Down
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "8.0"
"php": "8.0.2"
},
"allow-plugins": {
"cweagans/composer-patches": true,
Expand Down Expand Up @@ -38,7 +38,6 @@
"test:unit": "phpunit -c tests/unit/phpunit.xml"
},
"require-dev": {
"nextcloud/coding-standard": "^1.1",
"phpunit/phpunit": "^9",
"nextcloud/ocp": "dev-stable27",
"bamarni/composer-bin-plugin": "^1.8"
Expand Down
Loading