Last active
July 7, 2023 14:13
-
-
Save DarkVss/5e7334c4bf804aafb4256a2647f2e5d5 to your computer and use it in GitHub Desktop.
Php installer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bash | |
sudo apt install -y lsb-release ca-certificates apt-transport-https software-properties-common gnupg2 | |
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/sury-php.list | |
curl -fsSL https://packages.sury.org/php/apt.gpg| sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/sury-keyring.gpg | |
sudo apt update | |
echo "!!! Now install PHP what u want !!!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment