PHP Classes

File: config/jaxon.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon for CakePHP   config/jaxon.php   Download  
File: config/jaxon.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Jaxon for CakePHP
This package integrates the Jaxon library into the
Author: By
Last change: Updated with latest changes on CakePHP 3.
Changed the app config.
Renamed the js.app.extern option to js.app.export.
Date: 2 years ago
Size: 1,074 bytes
 

Contents

Class file image Download
<?php

return [
   
'app' => [
       
'request' => [
           
// 'route' => 'jaxon',
       
],
       
'directories' => [
           
rtrim(ROOT, '/') . '/jaxon/App' => [
               
'namespace' => '\\Jaxon\\App',
               
// 'separator' => '', // '.' or '_'
                // 'protected' => [],
           
],
        ],
    ],
   
'lib' => [
       
'core' => [
           
'language' => 'en',
           
'encoding' => 'UTF-8',
           
'request' => [
               
'uri' => 'jaxon',
            ],
           
'prefix' => [
               
'class' => '',
            ],
           
'debug' => [
               
'on' => false,
               
'verbose' => false,
            ],
           
'error' => [
               
'handle' => false,
            ],
        ],
       
'js' => [
           
'lib' => [
               
// 'uri' => '',
           
],
           
'app' => [
               
// 'uri' => '',
                // 'dir' => '',
                // 'export' => true,
                // 'minify' => true,
           
],
        ],
    ],
];