Skip to content

Commit

Permalink
use composer commands in shell history
Browse files Browse the repository at this point in the history
  • Loading branch information
shish committed Oct 10, 2024
1 parent 9526bd2 commit 305fc1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
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"
}
}

0 comments on commit 305fc1f

Please sign in to comment.