Skip to content

Commit be1785d

Browse files
authored
Merge pull request #133 from zf1s/publish-whole-package
publish the whole zf1s/zf1 package
2 parents 92fbe7e + 1a93b55 commit be1785d

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Changelog:
22

3-
### 1.15.0 - 2022-10-04
3+
### 1.15.0 - 2022-10-05
44
- zend-loader
55
- overhaul of zend-loader and autoloader done again ([#116])
66
- continues work done initially in [#1] / [76477fb]
@@ -32,6 +32,9 @@
3232
- fixed parameter annotation for `Zend_Db_Table_Select::setIntegrityCheck()` ([#119])
3333
- fixed wrong return-type in `Zend_Form_Element::removeValidator()` ([#121])
3434
- fixed annotations for `Zend_Controller_Router_Route_Regex::__construct()` ([#123])
35+
- general: publish the whole `zf1s/zf1` package on packagist ([#133])
36+
- the whole framework package can be now installed at once with `composer require zf1s/zf1` to easy up the transition period,
37+
but please keep in mind the recommended approach is to identify and install only the packages you need.
3538

3639
[#1]: https://github.com/zf1s/zf1/pull/1
3740
[#104]: https://github.com/zf1s/zf1/pull/104
@@ -42,6 +45,7 @@
4245
[#123]: https://github.com/zf1s/zf1/pull/123
4346
[#126]: https://github.com/zf1s/zf1/pull/126
4447
[#131]: https://github.com/zf1s/zf1/pull/131
48+
[#133]: https://github.com/zf1s/zf1/pull/133
4549
[76477fb]: https://github.com/zf1s/zf1/commit/76477fbe00a198ef4376ea38c46df3960c574af8
4650

4751
### 1.14.0 - 2021-10-01

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[![Build Status](https://github.com/zf1s/zf1/actions/workflows/tests.yml/badge.svg)](https://github.com/zf1s/zf1/actions/workflows/tests.yml)
44

55
This is a monorepo of a fork of Zend Framework 1, made after it's reached its EOL.
6+
67
All original framework's components have been split into individual packages, which can be installed separately with `composer`, e.g.
78
```
89
composer require zf1s/zend-*
@@ -102,6 +103,19 @@ Currently everything should be compatible with **PHP 5.3-8.0**. _5.2 support is
102103
They may also contain some fixes, either for long-standing bugs, which haven't made their way into zf1 official repo before EOL, or newly found ones
103104
and (backwards compatible) adjustments (optimisations for composer autoloader mostly). Maybe even one or two new features.
104105

106+
Still, the main purpose is to allow working on legacy projects on more modern systems, while opening the possibility to **migrate away from zf1 gradually, one component at a time**.
107+
108+
109+
### Alternative Installation Method
110+
111+
You may also install the whole framework at once, using composer:
112+
```
113+
composer require zf1s/zf1
114+
```
115+
to easy up the transition period, but please keep in mind the recommended approach is to
116+
identify and install only the packages you need.
117+
118+
105119
### Changelog: [here](CHANGELOG.md)
106120
Original README: [click](README.orig.md)
107121

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zf1s/zf1",
3-
"description": "Monorepo for zf1s (Zend Framework 1) packages",
3+
"description": "Zend Framework 1 complete package, PHP 5.3-8.0 compatible. Please consider using individual zf1s/zend-* packages instead - see README.",
44
"license": "BSD-3-Clause",
55
"require": {
66
"php": ">=5.3.3",
@@ -117,6 +117,7 @@
117117
}
118118
},
119119
"replace": {
120+
"zendframework/zendframework1": ">=1.12.20",
120121
"zf1s/zend-acl": "self.version",
121122
"zf1s/zend-amf": "self.version",
122123
"zf1s/zend-application": "self.version",

0 commit comments

Comments
 (0)