PHPackages                             naventum/naventum - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. naventum/naventum

ActiveProject[Framework](/categories/framework)

naventum/naventum
=================

The Naventum simple PHP Framework.

v1.6.8(3y ago)4763MITPHPPHP ^7.3|^8.0CI failing

Since Dec 13Pushed 6mo agoCompare

[ Source](https://github.com/naventum/naventum)[ Packagist](https://packagist.org/packages/naventum/naventum)[ RSS](/packages/naventum-naventum/feed)WikiDiscussions 1.x Synced 1mo ago

READMEChangelog (10)Dependencies (3)Versions (14)Used By (0)

Naventum
--------

[](#naventum)

The Naventum simple PHP Framework

[![StyleCI](https://camo.githubusercontent.com/3f21c8f1e6c7a6d384794127be26763571f7131d8e220c99aa44210a85d46ff4/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3435373632323037362f736869656c643f6272616e63683d312e78)](https://github.styleci.io/repos/457622076?branch=1.x)[![CodeQL](https://github.com/naventum/naventum/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/naventum/naventum/actions/workflows/codeql-analysis.yml)[ ![CI Tests](https://github.com/naventum/naventum/actions/workflows/ci.yml/badge.svg)](https://github.com/naventum/naventum/actions/workflows/ci.yml)[![Total Downloads](https://camo.githubusercontent.com/41bc7c3d616d3afb31a8a48dfa2297fa97ab9761970c8b550df24a44234b77ba/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6176656e74756d2f6e6176656e74756d)](https://packagist.org/packages/naventum/naventum)[![Latest Stable Version](https://camo.githubusercontent.com/2d0c41ec9209eff695ef8df23677661e6d4ec1b6072170f68cbc298cef2697fe/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6176656e74756d2f6e6176656e74756d)](https://packagist.org/packages/naventum/naventum)[![License](https://camo.githubusercontent.com/fd218d8c1c96a662ec93aa576fd0637d66d29e37a6997f2376d0c58a804c1ff2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6e6176656e74756d2f6e6176656e74756d)](https://packagist.org/packages/naventum/naventum)

### Installation

[](#installation)

The best way to use this boilerplate is using [Composer](https://getcomposer.org/).

```
composer create-project naventum/naventum app-name
```

#### Run local server

[](#run-local-server)

Run the server using default php.

```
php -S localhost:8000 -t public
```

#### Authentication

[](#authentication)

Naventum default authentication.

```
composer require naventum/naventum-auth
```

Register the naventum auth provider `Naventum\NaventumAuth\Illuminate\Foundation\Support\NaventumauthServiceProvider` at `config/app.php`

```
...
'providers' => [
        /*
         * Naventum Framework Service Providers...
         */
        Naventum\Framework\Illuminate\Debug\DebugServiceProvider::class,
        Naventum\Framework\Illuminate\Foundation\Support\Providers\AuthServiceProvider::class,
        App\Providers\RouteServiceProvider::class,
        App\Providers\AppServiceProvider::class,

        Naventum\NaventumAuth\Illuminate\Foundation\Support\NaventumauthServiceProvider::class,
        ...
]
```

For configuring features, create a php file `config/naventum-auth.php`, fill

```
