![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/lightsaml/symfony-bridge/contrib/ |
#!/bin/sh if [ ! -f php-cs-fixer.phar ]; then echo "The php-cs-fixer.phar is required... downloading..." wget http://get.sensiolabs.org/php-cs-fixer.phar -O php-cs-fixer.phar || curl http://get.sensiolabs.org/php-cs-fixer.phar -o php-cs-fixer.phar || { echo >&2 "I require wget or curl but they are not installed. Aborting."; exit 1; } fi # Copy the pre-commit hook to the current repository hooks directory. cp contrib/pre-commit .git/hooks/pre-commit # Add execution permission for pre-commit file. chmod +x .git/hooks/pre-commit