Skip to content

Commit

Permalink
Merge pull request #133 from zf1s/publish-whole-package
Browse files Browse the repository at this point in the history
publish the whole zf1s/zf1 package
  • Loading branch information
partikus committed Oct 5, 2022
2 parents 92fbe7e + 1a93b55 commit be1785d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Changelog:

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

[#1]: https://github.com/zf1s/zf1/pull/1
[#104]: https://github.com/zf1s/zf1/pull/104
Expand All @@ -42,6 +45,7 @@
[#123]: https://github.com/zf1s/zf1/pull/123
[#126]: https://github.com/zf1s/zf1/pull/126
[#131]: https://github.com/zf1s/zf1/pull/131
[#133]: https://github.com/zf1s/zf1/pull/133
[76477fb]: https://github.com/zf1s/zf1/commit/76477fbe00a198ef4376ea38c46df3960c574af8

### 1.14.0 - 2021-10-01
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![Build Status](https://github.com/zf1s/zf1/actions/workflows/tests.yml/badge.svg)](https://github.com/zf1s/zf1/actions/workflows/tests.yml)

This is a monorepo of a fork of Zend Framework 1, made after it's reached its EOL.

All original framework's components have been split into individual packages, which can be installed separately with `composer`, e.g.
```
composer require zf1s/zend-*
Expand Down Expand Up @@ -102,6 +103,19 @@ Currently everything should be compatible with **PHP 5.3-8.0**. _5.2 support is
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
and (backwards compatible) adjustments (optimisations for composer autoloader mostly). Maybe even one or two new features.

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**.


### Alternative Installation Method

You may also install the whole framework at once, using composer:
```
composer require zf1s/zf1
```
to easy up the transition period, but please keep in mind the recommended approach is to
identify and install only the packages you need.


### Changelog: [here](CHANGELOG.md)
Original README: [click](README.orig.md)

Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zf1s/zf1",
"description": "Monorepo for zf1s (Zend Framework 1) packages",
"description": "Zend Framework 1 complete package, PHP 5.3-8.0 compatible. Please consider using individual zf1s/zend-* packages instead - see README.",
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
Expand Down Expand Up @@ -117,6 +117,7 @@
}
},
"replace": {
"zendframework/zendframework1": ">=1.12.20",
"zf1s/zend-acl": "self.version",
"zf1s/zend-amf": "self.version",
"zf1s/zend-application": "self.version",
Expand Down

0 comments on commit be1785d

Please sign in to comment.