MaplePHP
  • MaplePHP - Layered structure MVC PHP framework
  • Guide
    • Get started
    • Installation
    • Service Provider
    • Dependency injector
    • Controller
    • Middlewares
    • Routers
  • Navigation
    • Simple navigation
    • Dynamic navigation
  • Template engine
    • Getting started
    • Templates
      • Index
      • Views
      • Partials
    • Content (DTO)
      • String
      • Number
      • Array
      • DateTime
      • Encode
      • Dom
  • Form builder
    • Form builder
  • Database
    • MySQL
  • Service providers
    • url
    • encode
    • dir
    • DB
    • responder
  • Installations
    • Authorization & login
  • Frontend template
    • Responder
    • Views & components
    • Modals
    • Redirects
  • Access
    • MaplePHP with Docker
  • Libraries
    • Container
    • MySQL queries
    • Validation
    • Cache
    • Logger
    • Request
    • Response
  • What is?
    • Dependency injector
    • Controller
    • Middleware
    • Router
Powered by GitBook
On this page
  • Install the framework
  • Updating MaplePHP
  • MaplePHP with Docker

Was this helpful?

  1. Guide

Installation

It is very easy to install MaplePHP framework.

Install the framework

1. Install with composer

Install the framework with composer:

composer create-project maplephp/maplephp myApp

You can also git clone the project and the run "composer install" if you prefer.

Now you are ready to install your app...

2. Install the App

After you have installed the project with Composer, you need to initialize your app. You can easily do this with the help of MaplePHP CLI in the command line from the project's root directory, where the file named "cli" exists.

Execute the command bellow:

php cli config install --type=app

Done!

Updating MaplePHP

Updating MaplePHP to the latest version is as simple as running the commands below.

composer update

MaplePHP with Docker

PreviousGet startedNextService Provider

Last updated 1 year ago

Was this helpful?

If you want to use MaplePHP with Docker then for a 3 step guide.

click here