Skip to content

Commit

Permalink
remove gitlab specific parts from github based bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
mike4git committed Aug 19, 2024
1 parent 8a48d26 commit c669b5c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,26 +64,26 @@
},
"scripts": {
"cs:check": "@cs:fix --dry-run",
"cs:check:gitlab-ci": "php-cs-fixer fix --dry-run --ansi --verbose --diff --format=gitlab > php-cs-fixer.json",
"cs:check:ci-pipeline": "php-cs-fixer fix --dry-run --ansi --verbose --diff --format=json > php-cs-fixer.json",
"cs:fix": "php-cs-fixer fix --ansi --verbose --diff",
"deptrac:analyse": "deptrac --config-file=depfile.yaml",
"deptrac:analyse:visual": "deptrac --formatter=graphviz-html --output=deptrac.analyse-result.html --config-file=depfile.yaml",
"phpstan": "phpstan analyse --ansi",
"phpstan:gitlab-ci": "phpstan analyse --ansi --no-interaction --no-progress --error-format=gitlab > phpstan-report.json",
"phpstan:ci-pipeline": "phpstan analyse --ansi --no-interaction --no-progress --error-format=github > phpstan-report.json",
"tests": "phpunit",
"tests:coverage:gitlab-ci": "phpunit --colors=never --coverage-text --coverage-cobertura .coverage/cobertura.xml --log-junit .coverage/junit.xml",
"tests:coverage:ci-pipeline": "phpunit --colors=never --coverage-text --coverage-cobertura .coverage/cobertura.xml --log-junit .coverage/junit.xml",
"yaml:lint": "yaml-lint config tests/Fixtures/Config"
},
"scripts-descriptions": {
"cs:check": "Checks code style (but doesn't fix anything)",
"cs:check:gitlab-ci": "Checks code style and redirects the output into a GitLab readable file",
"cs:check:ci-pipeline": "Checks code style and redirects the output into a readable file for CI pipelining",
"cs:fix": "Checks and fixes code style",
"deptrac:analyse": "Analyse your dependencies and follow the pre-defined rules and layers",
"deptrac:analyse:visual": "Visualize your dependencies and follow the pre-defined rules and layers",
"phpstan": "Checks for code smells",
"phpstan:gitlab-ci": "Checks for code smells and redirects the output into a GitLab readable file",
"phpstan:ci-pipeline": "Checks for code smells and redirects the output into a Github readable file",
"tests": "Run all phpunit tests",
"tests:coverage:gitlab-ci": "Run all phpunit tests and create coverage reports",
"tests:coverage:ci-pipeline": "Run all phpunit tests and create coverage reports",
"yaml:lint": "Lints Symfony YAML config files"
}
}

0 comments on commit c669b5c

Please sign in to comment.