-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathversions
More file actions
executable file
·29 lines (24 loc) · 793 Bytes
/
versions
File metadata and controls
executable file
·29 lines (24 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
# USAGE:
# Run `./versions TAG` where TAG is the tagged image version you want to check
# the information of every package.
BASE="docker run -ti --rm devdrops/php-toolbox:$1"
eval "$BASE php --version"
eval "$BASE composer --version"
eval "$BASE phpunit --version"
eval "$BASE phpcs --version"
eval "$BASE php-cs-fixer --version"
eval "$BASE phpmd --version"
eval "$BASE behat --version"
eval "$BASE phpstan --version"
eval "$BASE psalm --version"
eval "$BASE composer-unused --version"
eval "$BASE pest --version"
eval "$BASE rector --version"
eval "$BASE phparkitect --version"
eval "$BASE phpspec --version"
eval "$BASE codecept --version"
eval "$BASE infection --version"
eval "$BASE deptrac --version"
eval "$BASE phpmetrics --version"
eval "$BASE pdepend --version"