We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd5fc65 commit 2e7d864Copy full SHA for 2e7d864
.circleci/config.yml
@@ -22,6 +22,11 @@ jobs:
22
make drop-migrate
23
make seed
24
25
+ - run:
26
+ name: Show framework version and additional info, php & composer version
27
+ command: |
28
+ make info
29
+
30
- run:
31
name: Run unit/functional tests
32
command: |
Makefile
@@ -238,6 +238,7 @@ info: ## Shows Php and Laravel version
238
@make exec cmd="php artisan --version"
239
@make exec cmd="php artisan env"
240
@make exec cmd="php --version"
241
+ @make exec cmd="composer --version"
242
243
logs: ## Shows logs from the laravel container. Use ctrl+c in order to exit
244
ifeq ($(INSIDE_DOCKER_CONTAINER), 0)
0 commit comments