https://github.com/madeindjs/blogmvc-zendframework1
https://github.com/madeindjs/blogmvc-zendframework1
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/madeindjs/blogmvc-zendframework1
- Owner: madeindjs
- Created: 2017-09-12T08:57:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-12T08:58:00.000Z (over 8 years ago)
- Last Synced: 2025-02-05T21:54:17.786Z (over 1 year ago)
- Language: PHP
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
BlogMVC-ZendFramework 1.12
===========================
**ZendFramework1** is an old but good framework. I had it to learn it in few weeks so I thought it will be a good idea to include in this repository.
How to install
--------------
Clone this repository and move into the **ZendFramework1.12** directory
```bash
$ git clone https://github.com/Grafikart/BlogMVC.git
```
**ZendFramework1.12** does not use Composer so you need to download and copy (or link) ZendFramework1.12 librairy folder.
```bash
$ wget https://packages.zendframework.com/releases/ZendFramework-1.12.20/ZendFramework-1.12.20.tar.gz
$ tar zxvf ZendFramework-1.12.20.tar.gz
$ cp -r ZendFramework-1.12.20/library/Zend blogmvc/ZendFramework1/library/
```
**ZendFramework1.12** does not include any migration system. So you have to build the default database from the *dump.sql* file
```bash
$ cd blogmvc/ZendFramework1
$ sqlite3 data/database.sqlite3 < data/dump.sql
```
Enjoy!