Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit ad1949e

Browse files
author
msavich
committed
Initial commit
1 parent 5faa0ab commit ad1949e

File tree

2 files changed

+7
-182
lines changed

2 files changed

+7
-182
lines changed

README.md

Lines changed: 5 additions & 180 deletions
Original file line numberDiff line numberDiff line change
@@ -1,189 +1,14 @@
1-
![Logo](http://framework.zend.com/images/logos/ZendFramework-logo.png)
2-
3-
Welcome to the Zend Framework 1.12 Release!
4-
5-
Master: [![Build Status](https://api.travis-ci.org/zendframework/zf1.png?branch=master)](https://travis-ci.org/zendframework/zf1)
6-
7-
RELEASE INFORMATION
8-
===================
9-
10-
Zend Framework 1.12.9Release.
11-
Released on September 17, 2014.
12-
13-
IMPORTANT FIXES FOR 1.12.9
14-
--------------------------
15-
16-
**This release contains security updates:**
17-
18-
- **ZF2014-05:** Due to an issue that existed in PHP's LDAP extension, it is
19-
possible to perform an unauthenticated simple bind against a LDAP server by
20-
using a null byte for the password, regardless of whether or not the user
21-
normally requires a password. We have provided a patch in order to protect
22-
users of unpatched PHP versions (PHP 5.5 <= 5.5.11, PHP 5.4 <= 5.4.27, all
23-
versions of PHP 5.3 and below). If you use `Zend_Ldap` and are on an affected
24-
version of PHP, we recommend upgrading immediately.
25-
- **ZF2014-06** `Zend_Db_Adapter_Sqlsrv` had a potential SQL injection
26-
vulnerability via improperly quoted null bytes. The code has been updated to
27-
ensure proper quoting and thus remove the security vector. If you are using
28-
`Zend_Db_Adapter_Sqlsrv` and manually quoting values via the adapter, we
29-
encourage you to upgrade immediately.
30-
31-
See http://framework.zend.com/changelog for full details.
32-
33-
NEW FEATURES
34-
============
35-
36-
Zend_Loader changes
37-
-------------------
38-
39-
A number of autoloaders and autoloader facilities were back ported from
40-
ZF2 to provide performant alternatives to those already available in the
41-
1.X releases. These include: Zend_Loader_StandardAutoloader, which
42-
improves on Zend_Loader_Autoloader by allowing the ability to specify a
43-
specific path to associate with a vendor prefix or namespace;
44-
Zend_Loader_ClassMapAutoloader, which provides the ability to use lookup
45-
tables for autoloading (which are typically the fastest possible way to
46-
autoload); and Zend_Loader_AutoloaderFactory, which can both create and
47-
update autoloaders for you, as well as register them with
48-
spl_autoload_register().
49-
50-
The Zend_Loader changes were back ported from ZF2 by Matthew Weier
51-
O’Phinney
52-
53-
Zend_EventManager
54-
-----------------
55-
56-
Zend_EventManager is a component that allows you to attach and detach
57-
listeners to named events, both on a per-instance basis as well as via
58-
shared collections; trigger events; and interrupt execution of
59-
listeners.
60-
61-
Zend_EventManager was back ported from ZF2 by Matthew Weier O’Phinney
62-
63-
Zend_Http_UserAgent_Features_Adapter_Browscap
64-
---------------------------------------------
65-
66-
This class provides a features adapter that calls get_browser() in order
67-
to discover mobile device capabilities to inject into UserAgent device
68-
instances.
69-
70-
Browscap (http://browsers.garykeith.com/) is an open project dedicated
71-
to collecting an disseminating a “database” of browser capabilities. PHP
72-
has built-in support for using these files via the get_browser()
73-
function. This function requires that your php.ini provides a browscap
74-
entry pointing to the PHP-specific php_browscap.ini file which is
75-
available at http://browsers.garykeith.com/stream.asp?PHP_BrowsCapINI.
76-
77-
Zend_Http_UserAgent_Features_Adapter_Browscap was created by Matthew
78-
Weier O’Phinney
79-
80-
Zend_Mobile_Push
81-
----------------
82-
83-
Zend_Mobile_Push is a component for implementing push notifications for
84-
the 3 major push notification platforms (Apple (Apns), Google (C2dm) and
85-
Microsoft (Mpns).
86-
87-
Zend_Mobile_Push was contributed by Mike Willbanks.
88-
89-
Zend_Gdata_Analytics
90-
--------------------
91-
92-
Zend_Gdata_Analytics is an extension to Zend_Gdata to allow interaction
93-
with Google’s Analytics Data Export API. This extension does not
94-
encompass any major changes in the overall operation of Zend_Gdata
95-
components.
96-
97-
Zend_Gdata_Analytics was contributed by Daniel Hartmann.
98-
99-
Removed features
100-
================
101-
102-
Zend_Http_UserAgent_Features_Adapter_WurflApi
103-
---------------------------------------------
104-
105-
Due to the changes in licensing of WURFL, we have removed the WurflApi
106-
adapter. We will be providing the WurflApi adapter to ScientiaMobile so
107-
that users of WURFL will still have that option.
108-
109-
Bug Fixes
110-
=========
111-
112-
In addition, over 200 reported issues in the tracker have been fixed.
113-
We’d like to particularly thank Adam Lundrigan, Frank Brückner and
114-
Martin Hujer for their efforts in making this happen. Thanks also to the
115-
many people who ran the ZF1 unit tests and reported their results!
116-
117-
For a complete list of closed issues beginning with 1.12.3, visit:
118-
119-
* https://github.com/zendframework/zf1/issues?labels=&milestone=&page=1&state=closed
120-
* http://framework.zend.com/changelog/
121-
122-
MIGRATION NOTES
123-
===============
124-
125-
A detailed list of migration notes may be found at:
126-
127-
http://framework.zend.com/manual/en/migration.html
128-
129-
SYSTEM REQUIREMENTS
1+
INFORMATION
1302
===================
1313

132-
Zend Framework requires PHP 5.2.11 or later. Please see our reference
133-
guide for more detailed system requirements:
134-
135-
http://framework.zend.com/manual/en/requirements.html
136-
137-
INSTALLATION
138-
============
4+
This is a fork from Zend Framework 1.12.9 Release.
1395

140-
Please see [INSTALL.md](INSTALL.md).
141-
142-
REPOSITORY HISTORY
143-
==================
144-
145-
This repository was created based on the release-1.12 branch of a Subversion
146-
repository, http://framework.zend.com/svn/framework/standard/. It contains a
147-
subset of the project history, dating from between the 1.5.0 and 1.6.0 releases,
148-
and only contains the tags for the 1.12 series. If you would like an older
149-
version, you may access the subversion repository linked above, or download an
150-
older version from http://framework.zend.com/downloads/archives.
151-
152-
CONTRIBUTING
153-
============
154-
155-
Please see [README-GIT.md](README-GIT.md) and
156-
[DEVELOPMENT_README.md](DEVELOPMENT_README.md).
157-
158-
QUESTIONS AND FEEDBACK
159-
======================
160-
161-
Online documentation can be found at http://framework.zend.com/manual.
162-
Questions that are not addressed in the manual should be directed to the
163-
appropriate mailing list:
164-
165-
- http://framework.zend.com/wiki/display/ZFDEV/Mailing+Lists
166-
167-
If you find code in this release behaving in an unexpected manner or
168-
contrary to its documented behavior, please create an issue in the Zend
169-
Framework issue tracker at:
170-
171-
- https://github.com/zendframework/zf1/issues
172-
173-
If you would like to be notified of new releases, you can subscribe to
174-
the fw-announce mailing list by sending a blank message to:
175-
176-
6+
PURPOSE
7+
---------------------------
8+
Contains latest stable release of Zend Framework plus performance improvements and bug fixes.
1779

17810
LICENSE
17911
=======
18012

18113
The files in this archive are released under the Zend Framework license.
18214
You can find a copy of this license in [LICENSE.txt](LICENSE.txt).
183-
184-
ACKNOWLEDGEMENTS
185-
================
186-
187-
The Zend Framework team would like to thank all the contributors to the Zend
188-
Framework project, our corporate sponsor, and you, the Zend Framework user.
189-
Please visit us sometime soon at http://framework.zend.com.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "zendframework/zendframework1",
3-
"description": "Zend Framework 1",
2+
"name": "magento/zendframework1",
3+
"description": "Magento Zend Framework 1",
44
"type": "library",
55
"keywords": [
66
"framework",

0 commit comments

Comments
 (0)