artemsk / veer by artemsk

The Veer Layer.
30
2
4
Package Data
Maintainer Username: artemsk
Package Create Date: 2014-11-24
Package Last Update: 2016-03-24
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-22 15:01:07
Package Statistics
Total Downloads: 30
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 2
Total Watchers: 4
Total Forks: 0
Total Open Issues: 0

Veer Engine

GitHub release Packagist Tea

Requirements

Veer uses Composer to manage dependencies. Also there are several system requirements:

  • PHP >= 5.5.9
  • Mcrypt PHP Extension
  • Mbstring PHP Extension
  • JSON PHP Extension
  • MySQL or SQLite (coming soon)

Installation

  • Clone git repository or use Composer:
$ git clone https://github.com/artemsk/veer.git ./
or
$ composer create-project artemsk/veer ./

If you don't have Composer install it with $ php -r "readfile('https://getcomposer.org/installer');" | php

  • Install all dependencies:
$ composer update
  • Copy and rename main configuration file — .env.example to .env. Set database parameters in it (others are optional):
DB_HOST=<localhost or url>
DB_DATABASE=<your database name>
DB_USERNAME=<database username>
DB_PASSWORD=<database password>
  • Set permissions for these folders: storage, vendor.

  • Cache configuration & routes:

$ php artisan config:cache
$ php artisan route:cache
  • Set your initial url and migrate database. You will be asked to set administrator login and password.
$ php artisan veer:install <url> --migrate

License

Veer is open-sourced software licensed under the MIT license.