Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ assets/conf-img/image-sizes.json
dist/
src/scss/common/00-variables/_theme-json.scss
theme.json

# Composer
composer.lock
7 changes: 2 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
"phpcompatibility/php-compatibility": "^9.3",
"phpro/grumphp-shim": "^1.3",
"squizlabs/php_codesniffer": "^3.7.1",
"vimeo/psalm": "^4.4",
"wp-coding-standards/wpcs": "^3.0"
},
"extra": {
Expand All @@ -70,13 +69,11 @@
"scripts": {
"post-root-package-install": "php -r \"copy('.env.example', '.env');\"",
"cs": "./vendor/bin/phpcs",
"cb": "./vendor/bin/phpcbf",
"psalm": "./vendor/bin/psalm"
"cb": "./vendor/bin/phpcbf"
},
"scripts-descriptions": {
"cs": "Run PHP CodeSniffer on codebase using our ruleset.",
"cb": "Run PHP Code Beautifier and Fixer on codebase using our ruleset.",
"psalm": "Run psalm on codebase using our ruleset."
"cb": "Run PHP Code Beautifier and Fixer on codebase using our ruleset."
},
"autoload": {
"psr-4": {
Expand Down
Loading