Skip to content

Commit

Permalink
chore(vendor-bin): add cs-fixer, phpunit, psalm
Browse files Browse the repository at this point in the history
Signed-off-by: Misha M.-Kupriyanov <[email protected]>
  • Loading branch information
printminion-co committed Dec 11, 2024
1 parent 4288bbc commit 7fd9bcc
Show file tree
Hide file tree
Showing 7 changed files with 3,946 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

composer.phar
/vendor/
/vendor-bin/*/vendor/

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
Expand All @@ -13,3 +14,7 @@ composer.phar

# PHPUnit cache
.phpunit.result.cache

/.php-cs-fixer.cache
/tests/.phpunit.cache

10 changes: 10 additions & 0 deletions vendor-bin/cs-fixer/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"require-dev": {
"nextcloud/coding-standard": "^1.2"
},
"config": {
"platform": {
"php": "8.1"
}
}
}
162 changes: 162 additions & 0 deletions vendor-bin/cs-fixer/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions vendor-bin/phpunit/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"config": {
"platform": {
"php": "8.1"
}
}
}
Loading

0 comments on commit 7fd9bcc

Please sign in to comment.