Skip to content

Commit

Permalink
Add php--cs-fixer library
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrala committed Nov 13, 2023
1 parent a085bc1 commit d15f8e1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
"require-dev": {
"php": "^8.1",
"cweagans/composer-patches": "^1.7.2",
"friendsofphp/php-cs-fixer": "^3.38",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
Expand All @@ -79,6 +80,8 @@
"scripts": {
"docs": "vendor/bin/rule-doc-generator generate src/ --categorize=3",
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G"
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G",
"check-style": "vendor/bin/php-cs-fixer check",
"fix-style": "vendor/bin/php-cs-fixer fix"
}
}

0 comments on commit d15f8e1

Please sign in to comment.