This is the new package we use for the fde project since php 8 update for zend framework. We have pulled a fork from the original repository: https://github.com/Shardj/zf1-future
Our fork is located in Github: https://github.com/sasu-fgrp/zf1-future
We imported the forked repo into Gitlab: https://gitlab-next.fgrp.net/ext/zf1-future
By using repository mirroring, all changes in Gitlab are also transferred to the fork on Github.
If there are changes in the original repo that we also want to have in our project, this is how it works:
-
Sync the changes within the Github project (https://github.com/sasu-fgrp/zf1-future) from the original project
-
In the GITLAB project, run the following locally:
- Set your upstream to the repository you forked from:
git remote add upstream [email protected]:sasu-fgrp/zf1-future.git
- Then fetch all the branches including master from the original repository:
git fetch upstream
- Merge this data in your local master branch:
git merge upstream/master
- Push the changes to your repository i.e. to origin/master:
git push origin master
Thanks to WebTigers for the logo
Zend may have abandoned the original Zend Framework, but the global Zend Framework Community has not! Since Zend sentenced ZF1 to EOL, the Zend Framework community around the globe has continued to work and build on what we consider to be one of the best PHP frameworks of all time.
Creators of the Tiger Development Platform featuring ZF1-Future
Creators of CommunityPlus+ PHP for IBM i featuring ZF1-Future
The ZF1 community has been hard at work updating Zend Framework with all of the latest features of PHP 8 and 8.1.
New ZF1-Future Manual: ZF1-Future Docs
The original docs can be found here: https://framework.zend.com/manual/1.12/en/manual.html
Installable through git clone or through
composer require shardj/zf1-future
https://packagist.org/packages/shardj/zf1-future
ZF1 Future runs on any version of PHP between 7.1 and 8.1! (see composer.json)
The files in this archive are released under the Zend Framework license. You can find a copy of this license in LICENSE.txt.
- ZF1 Extras Future
- ZF1s - Another community supported continuation of ZF1, with a focus on splitting the frameworks original components into individual packages
Bootstrap error: Unable to resolve plugin "useragent"; no corresponding plugin with that name
See comments in: Shardj#92