smasty/neevo-nette-ext

This package is abandoned and no longer maintained. No replacement package was suggested.

Neevo extension for Nette Framework

v1.2.5 2017-10-23 14:11 UTC

This package is not auto-updated.

Last update: 2021-11-27 00:07:33 UTC


README

This package provides tools to optimize Neevo DBAL for use in a Nette Framework application. It will register Neevo as a service to the DI Container, add a panel to DebugBar showing performed queries and a panel to Bluescreen with SQL query in case of NeevoException. It also provides an adapter for Nette cache storage system.

Only Nette Framework 2.0 and above PHP 5.3 packages are supported.

Instructions

  1. Add the extension to your Composer configuration:

    {
    	"require": {
    		"smasty/neevo-nette-ext": "1.*"
    	}
    }
  2. Add new sections to your config file (e.g. app/config/config.neon) and place there your Neevo configuration:

    extensions:
    	neevo: Neevo\Nette\Extension
    
    neevo:
    	driver: MySQLi
    	username: root
    	password: ****
    	database: my_database
    
  3. There is no step three.