Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use composer commands in shell history #1290

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 5 additions & 5 deletions .devcontainer/bash_history
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
./vendor/bin/php-cs-fixer fix && ./vendor/bin/phpunit --config tests/phpunit.xml && ./vendor/bin/phpstan analyse --memory-limit 1G -c tests/phpstan.neon
./vendor/bin/php-cs-fixer fix
./vendor/bin/phpunit --config tests/phpunit.xml
./vendor/bin/phpstan analyse --memory-limit 1G -c tests/phpstan.neon
php ./.docker/run.php
composer check
composer format
composer test
composer stan
composer docker-run
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
"format": "php-cs-fixer fix",
"stan-ci": "phpstan analyse --memory-limit 1G -c tests/phpstan.neon --error-format=github",
"stan": "phpstan analyse --memory-limit 1G -c tests/phpstan.neon --error-format=raw",
"test": "phpunit --config tests/phpunit.xml"
"test": "phpunit --config tests/phpunit.xml",
"docker-run": "./.docker/run.php"
}
}