2017 © Pedro Peláez
 

installer lumenate

Orchestra Platform Lumenate Installer

image

orchestra/lumenate

Orchestra Platform Lumenate Installer

  • Monday, June 25, 2018
  • by crynobone
  • Repository
  • 1 Watchers
  • 3 Stars
  • 30 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 4 Versions
  • 3 % Grown

The README.md

Orchestra Platform Lumenate Installer

Lumenate is an experimental project primarily intended for extending API functionality on Orchestra Platform by adding Lumen on the same codebase as your primary application., (*1)

Latest Stable Version Total Downloads Latest Unstable Version License, (*2)

Installation

First, install the Lumenate installer and make sure that the global Composer bin directory is within your system's $PATH:, (*3)

composer global require "orchestra/lumenate=^1.0"

Next, create a new Orchestra Platform application and install Lumen:, (*4)

composer create-project orchestra/platform application
cd application
lumenate install

After installing Lumen, you can also opt to add the base Lumen application skeleton under lumen folder, you can do this by running:, (*5)

lumenate make

You can also choose to add new path to autoload to detect lumen/app using PSR-4 or use a single app directory., (*6)

{
    "autoload": {
        "psr-4": {
            "App\\Lumen\\": "lumen/app/",
            "App\\": "app/",
        }
    },
    "autoload-dev": {
        "classmap": [
            "lumen/tests/LumenTestCase.php",
            "tests/TestCase.php"
        ]
    },
}

The Versions