-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move php-cs-fixer to vendor-bin
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
- Loading branch information
Showing
7 changed files
with
992 additions
and
2,580 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,16 +21,18 @@ | |
} | ||
], | ||
"scripts": { | ||
"cs:check": "php-cs-fixer fix --dry-run --diff", | ||
"cs:fix": "php-cs-fixer fix", | ||
"cs:check": "vendor-bin/php-cs-fixer/vendor/php-cs-fixer/shim/php-cs-fixer fix --dry-run --diff", | ||
"cs:fix": "vendor-bin/php-cs-fixer/vendor/php-cs-fixer/shim/php-cs-fixer fix", | ||
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l", | ||
"test": "phpunit -c tests/phpunit.xml", | ||
"test:unit": "phpunit -c tests/phpunit.xml tests/Unit", | ||
"test:unit:dev": "phpunit -c tests/phpunit.xml tests/Unit --no-coverage" | ||
"test:unit:dev": "phpunit -c tests/phpunit.xml tests/Unit --no-coverage", | ||
"post-install-cmd": ["@composer bin all install --ansi"], | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
st3iny
Author
Member
|
||
"post-update-cmd": ["@composer bin all update --ansi"] | ||
}, | ||
"require-dev": { | ||
"christophwurst/nextcloud_testing": "^0.12.4", | ||
"nextcloud/coding-standard": "^0.5.0 || ^1.0.0" | ||
"bamarni/composer-bin-plugin": "^1.8.2", | ||
"christophwurst/nextcloud_testing": "^0.12.4" | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
|
@@ -39,7 +41,10 @@ | |
"autoloader-suffix": "SuspiciousLogin", | ||
"platform": { | ||
"php": "8.0" | ||
} | ||
}, | ||
"allow-plugins": { | ||
"bamarni/composer-bin-plugin": true | ||
} | ||
}, | ||
"autoload" : { | ||
"psr-4": { | ||
|
Oops, something went wrong.
This change break the build for NC 30 beta 4.
When using
composer install --no-dev --optimize-autoloader -v
we get: