LoginSignup
1
1

More than 5 years have passed since last update.

CentOS7でPhalconの環境を構築するとても良い方法

Last updated at Posted at 2019-02-15

via https://beyondjapan.com/blog/2017/02/execution-environment-php-phalcon-on-centos

脳死でできるコピペコマンドリスト

epelリポジトリのインストール

sudo yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

remiリポジトリのインストール

sudo yum install -y http://rpms.remirepo.net/enterprise/remi-release-7.rpm

phpのインストール

sudo yum --enablerepo=remi-php72 install -y php php-mbstring php-mysqlnd

Phalconのインストール

sudo yum --enablerepo=remi-php72 install -y php-phalcon

確認

sudo systemctl restart httpd
php -r "echo Phalcon\Version::get();"
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1