Skip to content
This repository was archived by the owner on Apr 13, 2019. It is now read-only.

Commit e21cc80

Browse files
Merge pull request #1 from eugene-manuilov/feature/phalcon-3.0
Feature/phalcon 3.0
2 parents ef01d0a + 3edce98 commit e21cc80

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ Phalcon VM is an open source [Vagrant](https://www.vagrantup.com/) configuration
44

55
## About Phalcon VM
66

7-
The primary goal is to provide an approachable development environment with a modern server configuration for project written with PHP7 and Phalcon 2.x framework. The project also contains compiled [Zephir](http://zephir-lang.com/) executable, which allows you to go even further, beyond just PHP.
7+
The primary goal is to provide an approachable development environment with a modern server configuration for project written with PHP7 and Phalcon 3.x framework. The project also contains compiled [Zephir](http://zephir-lang.com/) executable, which allows you to go even further, beyond just PHP.
88

99
## What will be installed?
1010

1111
1. [Ubuntu](http://www.ubuntu.com/) 16.04 LTS (Xenial Xerus)
1212
1. [nginx](http://nginx.org/) (mainline version)
1313
1. [mysql](https://www.mysql.com/) 5.7.x
14-
1. [Phalcon PHP](https://phalconphp.com/) 2.1.x
15-
1. [Phalcon Dev Tools](https://docs.phalconphp.com/en/latest/reference/tools.html) 2.0.x
14+
1. [Phalcon PHP](https://phalconphp.com/) 3.x
15+
1. [Phalcon Dev Tools](https://docs.phalconphp.com/en/latest/reference/tools.html) 3.x
1616
1. [Zephir](http://zephir-lang.com/) 0.9.x
1717
1. [php-fpm](http://php-fpm.org/) 7.0.x
1818
1. [memcached](http://memcached.org/)

provision/10-install-phalcon.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ if [[ -f /usr/lib/php/20151012/phalcon.so ]]; then
1919
echo "PhalconPHP is already installed"
2020
else
2121
echo "Installing PhalconPHP..."
22-
git clone git://github.com/phalcon/cphalcon.git /tmp/cphalcon 2>&1
23-
cd /tmp/cphalcon/
24-
git checkout origin/2.1.x -b origin/2.1.x 2>&1
25-
sudo zephir build —backend=ZendEngine3 2>&1
22+
git clone --depth=5 git://github.com/phalcon/cphalcon.git /tmp/cphalcon 2>&1
23+
cd /tmp/cphalcon/build
24+
sudo ./install
2625
fi

0 commit comments

Comments
 (0)