You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a long term goal, we would like to eliminate knowledge about 3rd party libraries from Magento code base. Magento code still can use 3rd party libraries, but they must be wrapped by Magento interfaces and classes (adapters) so that 3rd party libraries can be easily substituted by newest versions or alternative implementations.
Acceptance Criteria
Magento interfaces are defined and can be used instead of ZF1 classes in Magento code
Default implementations for new interfaces are defined and configured as the preferences for new interfaces
Client code of the ZF1 components is refactored to use Magento interfaces
Zend classes are used as private services in Magento adapters
Backward compatibility is preserved
ZF1 components are updated to ZF2
List of the components
#
Component Name (total usages count)
Module Name
Usages Count
1
Zend_Wildfire (total: 3)
Framework\Profiler
3
The text was updated successfully, but these errors were encountered:
Removed Zend\Wildfire, as its API was specific to ZF1, and because we can easily leverage FirePHP at this time.
parts of the FirePHP can be found in Zend\Log\Writer e.g. vendor\zendframework\zend-log\src\Writer\FirePhp.php
in the current Magento\Framework\Profiler\Driver\Standard\Output\Firebug.php
there are 3 usages :
Zend_Wildfire_Channel_HttpHeaders
Zend_Wildfire_Plugin_FirePhp_TableMessage
Zend_Wildfire_Plugin_FirePhp
of which the first two don't really have any alternatives at the moment. One could use the original FirePHP library instead and include it like suggested here (http://stackoverflow.com/questions/13727592/using-firephp-with-zend-framework-2) but to be honest the FirePHP library is really outdated and does not work with the latest Firefox anymore.
Zend_Wildfire was deprecated from ZendFramework 2.0. Some parts of FirePhp are now used in Zend\Log\Writer but the FirePhp library itself is outdated and does not work in the latest Firefox anymore. These files, Firebug and FirebugTest, can be removed.
Description
Upgrade components from ZF1 to ZF2
As a long term goal, we would like to eliminate knowledge about 3rd party libraries from Magento code base. Magento code still can use 3rd party libraries, but they must be wrapped by Magento interfaces and classes (adapters) so that 3rd party libraries can be easily substituted by newest versions or alternative implementations.
Acceptance Criteria
List of the components
(total usages count)
The text was updated successfully, but these errors were encountered: