2017 © Pedro Peláez
 

library lumen

Lumen Framework for Orchestra Platform

image

orchestra/lumen

Lumen Framework for Orchestra Platform

  • Saturday, July 28, 2018
  • by crynobone
  • Repository
  • 2 Watchers
  • 4 Stars
  • 9,645 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 49 Versions
  • 3 % Grown

The README.md

Lumen Framework for Orchestra Platform

This repository contains the core code of the Orchestra Lumen. If you want to build an application using Orchestra Platform, visit the main repository., (*1)

Build Status 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"

From within a working Orchestra Platform project, run the following command:, (*4)

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\\": "app/",
        }
    },
    "autoload-dev": {
        "classmap": [
            "tests/LumenTestCase.php",
            "tests/TestCase.php"
        ]
    },

    "prefer-stable": true,
    "minimum-stability": "dev"
}

It is recommended for you to set "prefer-stable": true and "minimum-stability": "dev" as both laravie/api and tymon/jwt-auth doesn't have a stable release for latest Lumen yet., (*7)

API Routing

Dingo API is preinstall with Lumen. To start using it you just need to uncomment the following from lumen/bootstrap.php:, (*8)

require base_path('lumen/routes/api.php');

JWT Authentication

Install tymon/jwt-auth via the command line:, (*9)

composer require "tymon/jwt-auth=^1.0"

Next, enable the following service providers from lumen/bootstrap.php:, (*10)

$app->register(Tymon\JWTAuth\Providers\LumenServiceProvider::class);

// ...

$app->register(App\Lumen\Providers\AuthServiceProvider::class);

Next, we need to create a secret key for JWT:, (*11)

php lumen/artisan jwt:secret

This would add JWT_SECRET value to your main .env file., (*12)

Finally you can extends the default App\User model to support Tymon\JWTAuth\Contracts\JWTSubject:, (*13)

<?php 

namespace App;

use App\Lumen\User as Eloquent;

class User extends Eloquent
{
    //
}

The Versions

28/07 2018

3.6.x-dev

3.6.9999999.9999999-dev

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

26/07 2018

v3.6.4

3.6.4.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

29/06 2018

dev-master

9999999-dev

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

29/06 2018

v3.6.3

3.6.3.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

05/06 2018

v3.6.2

3.6.2.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

24/05 2018

v3.6.1

3.6.1.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

21/05 2018

v3.6.0

3.6.0.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

03/03 2018

3.5.x-dev

3.5.9999999.9999999-dev

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

03/03 2018

v3.5.4

3.5.4.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

28/02 2018

v3.5.3

3.5.3.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

24/02 2018

3.4.x-dev

3.4.9999999.9999999-dev

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

20/01 2018

v3.5.2

3.5.2.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

04/01 2018

v3.5.1

3.5.1.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

27/11 2017

v3.5.0

3.5.0.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

14/11 2017

v3.5.0-BETA1

3.5.0.0-beta1

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

02/10 2017

v3.4.4

3.4.4.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

28/09 2017

v3.4.3

3.4.3.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

26/09 2017

v3.4.2

3.4.2.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

17/08 2017

v3.4.1

3.4.1.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

30/05 2017

v3.4.0

3.4.0.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

14/02 2017

3.3.x-dev

3.3.9999999.9999999-dev

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

16/12 2016

v3.3.2

3.3.2.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

16/12 2016

v3.3.1

3.3.1.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

27/11 2016

v3.3.0

3.3.0.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

03/11 2016

v3.3.0-BETA2

3.3.0.0-beta2

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

25/10 2016

v3.3.0-BETA1

3.3.0.0-beta1

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

17/09 2016

3.2.x-dev

3.2.9999999.9999999-dev

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

17/09 2016

v3.2.9

3.2.9.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

14/08 2016

v3.2.8

3.2.8.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

22/07 2016

v3.2.7

3.2.7.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

13/06 2016

v3.2.6

3.2.6.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

13/06 2016

3.1.x-dev

3.1.9999999.9999999-dev

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

13/06 2016

v3.1.9

3.1.9.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

24/04 2016

v3.2.5

3.2.5.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

25/03 2016

v3.2.4

3.2.4.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

25/03 2016

v3.1.8

3.1.8.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

23/01 2016

v3.2.3

3.2.3.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

16/01 2016

v3.2.2

3.2.2.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

15/01 2016

v3.2.1

3.2.1.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

11/01 2016

v3.2.0

3.2.0.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

11/01 2016

v3.1.7

3.1.7.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

10/01 2016

v3.2.0-BETA1

3.2.0.0-beta1

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform

21/12 2015

v3.1.6

3.1.6.0

Lumen Framework for Orchestra Platform

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel framework lumen orchestral orchestra-platform