-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
70 lines (51 loc) · 2.08 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
================================
OPEN POWER LIBS 2
OFFICIAL ZEND FRAMEWORK PORT
================================
Version 0.2
Thank you for downloading Open Power Libs port for Zend Framework!
This document contains the necessary information about the package.
PACKAGE CONTENTS
================
The package contains the following items:
- OPL port for Zend Framework
- A sample ZF application
- License file
- User manual
- This document
SYSTEM REQUIREMENTS
===================
The package needs the following software in order to work
properly:
- Open Power Libs, at least 2.0.x (available at [Invenzzia](http://www.invenzzia.org) )
- Zend Framework 1.10 (available at [Zend.com](http://framework.zend.com) )
INSTALLATION
============
1. Put the contents of the /lib directory in your ZF application directory structure
2. Put the contents of the /lib directory from OPL in your ZF application directory structure
3. Configure the OPL autoloader in the entry script (`index.php`):
~~~~
require('/path/to/Opl/Base.php');
Opl_Loader::setHandleUnknownLibraries(false);
Opl_Loader::addLibrary('Opl', array('directory' => '/path/to/Opl/'));
Opl_Loader::addLibrary('Opt', array('directory' => '/path/to/Opt/'));
Opl_Loader::addLibrary('Invenzzia', array('directory' => '/path/to/Invenzzia/', 'handler' => null));
Opl_Loader::register();
~~~~
4. Extend the `Invenzzia_Application_Bootstrap` class in `Bootstrap.php`
VERSION INFORMATION
===================
This is a development version of the port. Currently it replaces the default
`Zend_Layout` and `Zend_View` implementation with OPT and integrates some
services with it. We would be grateful if you tested it and sent us your
suggestions and ideas.
AUTHORS AND LICENSE
===================
OPL port for Zend Framework
Copyright (c) Invenzzia Group 2009-2010
The port is available under the terms of New BSD License that
can be found in `LICENSE` file.
Authors and contributors:
- Tomasz Jedrzejewski - idea, design and programming
Zend Framework is a software of Zend Company Ltd.
distributed under New BSD License.