File tree Expand file tree Collapse file tree 5 files changed +14
-0
lines changed Expand file tree Collapse file tree 5 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,4 @@ install:
21
21
@sudo ln -sf $(shell pwd) /bin/infection /usr/local/bin/infection
22
22
@sudo ln -sf $(shell pwd) /bin/pest /usr/local/bin/pest
23
23
@sudo ln -sf $(shell pwd) /bin/pint /usr/local/bin/pint
24
+ @sudo ln -sf $(shell pwd) /bin/exakat /usr/local/bin/exakat
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env sh
2
+ phpctl exakat $@
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ symlink() {
13
13
sudo ln -sf " ${INSTALL_DIR} /bin/phpunit" /usr/local/bin/phpunit
14
14
sudo ln -sf " ${INSTALL_DIR} /bin/pest" /usr/local/bin/pest
15
15
sudo ln -sf " ${INSTALL_DIR} /bin/pint" /usr/local/bin/pint
16
+ sudo ln -sf " ${INSTALL_DIR} /bin/exakat" /usr/local/bin/exakat
16
17
}
17
18
18
19
echo " \033[0;33mInstalling phpctl at \033[0m$INSTALL_DIR "
41
42
echo " sudo ln -sf ${INSTALL_DIR} /bin/infection /usr/local/bin/infection"
42
43
echo " sudo ln -sf ${INSTALL_DIR} /bin/pest /usr/local/bin/pest"
43
44
echo " sudo ln -sf ${INSTALL_DIR} /bin/pint /usr/local/bin/pint"
45
+ echo " sudo ln -sf ${INSTALL_DIR} /bin/exakat /usr/local/bin/exakat"
44
46
echo " "
45
47
fi
Original file line number Diff line number Diff line change
1
+ memory_limit = -1
1
2
sys_temp_dir = /tmp
2
3
3
4
[xdebug]
Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ couscous() {
14
14
fi ;
15
15
}
16
16
17
+ exakat () {
18
+ if [ -f vendor/bin/exakat ]; then
19
+ run -- vendor/bin/exakat ${@ }
20
+ else
21
+ run -- exakat ${@ }
22
+ fi ;
23
+ }
24
+
17
25
infection () {
18
26
if [ -f vendor/bin/infection ]; then
19
27
run -- vendor/bin/infection ${@ }
You can’t perform that action at this time.
0 commit comments