How to find Laravel Framework Version

Laravel is a popular PHP framework. In this post, I will show how to check laravel version. To find the Laravel Framework version, run Another way to find Laravel version is to check the file composer.lock present in the Laravel web root directory. You will see something like the following In this case, we are … Read more

PHP APC Cache

APC Cache is an open source opcode caching module for PHP. You can find documentation for APCu at https://www.php.net/manual/en/book.apcu.php Zend OpCache install apc from yum install apc from source install apc from pecl configure apc in php.ini See PHP

PHP PECL extension

PECL is a repository for PHP Extensions, providing a directory of all known extensions and hosting facilities for downloading and development of PHP extensions. https://pecl.php.net/packages.php To install a PECL extension, run pecl install pecl_http To install a specific version, run pecl install pecl_http-3.2.3 How to install PHP PECL Extension Install PHP 7.2 mcrypt extension on … Read more

Laravel

Create a project using the latest Laravel Create a project using a specific version of Laravel. You can see available Laravel versions on the site https://packagist.org/packages/laravel/laravel Clear Laravel application cache or Back to PHP