]> git.pld-linux.org Git - packages/php-ZendFramework.git/blame - autoload.php
backports update
[packages/php-ZendFramework.git] / autoload.php
CommitLineData
fa357215
ER
1<?php
2/*
3Simple autoloader for Zend Framework
4Inspired from https://github.com/zendframework/ZendSkeletonApplication
5
6Set autoregister_zf for Zend Framework
7Set fallback_autoloader for dependencies which are PSR-0 compliant
8*/
9require_once __DIR__ . '/Loader/AutoloaderFactory.php';
10Zend\Loader\AutoloaderFactory::factory(array(
11 'Zend\Loader\StandardAutoloader' => array(
12 'fallback_autoloader' => true,
13 'autoregister_zf' => true
14 )
15));
This page took 0.06963 seconds and 4 git commands to generate.