Fedora 27 and Symfony
by Shawn Iwinski
Before Fedora 27 only Symfony version 2.x (php-symfony) was available. As
of Fedora 27, 3 versions of Symfony will be available: 2.x (php-symfony),
3.x (php-symfony3*), and 4.x (php-symfony4*). All versions can be
installed at the same time. If you have any issues with any of the Symfony
versions/packages please create a bugzilla ticket.
Versions' root/base directories:
* 2.x: /usr/share/php/Symfony/
* 3.x: /usr/share/php/Symfony3/
* 4.x: /usr/share/php/Symfony4/
5 years, 9 months
PHP 7.2.0 RC6 => 7.2.0 GA
by Remi Collet
Hi,
FYI PHP 7.2.0 RC6 is now in rawhide.
As PHP-7.2.0 is now branched, this latest RC should be really close to
the upcoming GA released (planned for Nov 30th)
Only "critical" fix will be accepted (per RM) on the release branch.
Remi.
5 years, 9 months
ZendFramework: switch fedora/autoloader WIP
by Remi Collet
Hi,
I start switching all ZF packages from zend-loader to fedora/autoloader
(using a classmap) in rawhide.
As I drop dependency on zend-loader, this mean if you rely on
/usr/share/php/Zend/autoload.php you have to explicitly requires
zend-loader (which provide it).
When all packages will be ready, you should be able to only use the
needed components autoloaders (thus reducing to minimal needed autoloader)
As this will be a quite long process, I recommend you keep the main
autoloader as a fallback.
Example:
\Fedora\Autoloader\Dependencies::required([
[
'/usr/share/php/Zend/Cache/autoload.php',
'/usr/share/php/Zend/autoload.php',
], [
'/usr/share/php/Zend/I18n/autoload.php',
'/usr/share/php/Zend/autoload.php',
], [
'/usr/share/php/Zend/Serializer/autoload.php',
'/usr/share/php/Zend/autoload.php',
],
]);
Remi
5 years, 10 months