Skip to content

Commit

Permalink
Rename rulesets
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-mendonca committed Mar 22, 2024
1 parent c78141a commit 0bbbc02
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .distignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ composer.json
composer.lock
package-lock.json
package.json
phpcompat.xml
phpcs.xml
phpmd.xml
phpcompat.xml.dist
phpcs.xml.dist
phpmd.xml.dist
phpstan.neon
README.md
6 changes: 3 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
/composer.lock export-ignore
/package-lock.json export-ignore
/package.json export-ignore
/phpcompat.xml export-ignore
/phpcs.xml export-ignore
/phpmd.xml export-ignore
/phpcompat.xml.dist export-ignore
/phpcs.xml.dist export-ignore
/phpmd.xml.dist export-ignore
/phpstan.neon export-ignore
/README.md export-ignore
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
# This file configures Markdownlint. Changes could affect the outcome.
- '.markdownlint.json'
# This file configures PHPCS. Changes could affect the outcome.
- 'phpcs.xml'
- 'phpcs.xml.dist'
# Changes to workflow files should always verify all workflows are successful.
- '.github/workflows/*.yml'
# Allows you to run this workflow manually from the Actions tab.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
# These files configure Composer. Changes could affect the outcome.
- 'composer.*'
# This file configures PHP Compatibility. Changes could affect the outcome.
- 'phpcompat.xml'
- 'phpcompat.xml.dist'
# Changes to workflow files should always verify all workflows are successful.
- '.github/workflows/*.yml'
# Allows you to run this workflow manually from the Actions tab.
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
"composer install"
],
"phpcs-i": "phpcs -i",
"lint:php": "phpcs -v --standard=phpcs.xml",
"format:php": "phpcbf -v --standard=phpcs.xml",
"compat:php": "phpcs -v --standard=phpcompat.xml",
"lint:php": "phpcs -v --standard=phpcs.xml.dist",
"format:php": "phpcbf -v --standard=phpcs.xml.dist",
"compat:php": "phpcs -v --standard=phpcompat.xml.dist",
"lint:phpstan": "phpstan analyse -c phpstan.neon --memory-limit=1G",
"lint:phpmd": "phpmd . text phpmd.xml",
"lint:phpmd": "phpmd . text phpmd.xml.dist",
"lint:md:docs": "npm run lint:md:docs",
"lint:pkg-json": "npm run lint:pkg-json",
"scripts-list": "composer run-script --list"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0bbbc02

Please sign in to comment.