Tag: php resources
-
PHP resource links
What’s New in PHP 8 (Features, Improvements, and the JIT Compiler)
-
How to configure php 7.4+ on Linux Ubuntu 20.04+
Configuring php can be confusing. PHP uses multiple configuration files, but the main ones are both named php.ini. You see with php you can have separate configurations for the app and the command line aka cli. This may sound stupid at first but it is due to the fact that your command line is a […]
-
How to list and install php modules on ubuntu linux
I always, always forget how to do this and it takes an hour of googling to figure this out again. Basically I often need to see not just what php modules are installed on my system, but also what can be installed. For example you can see what is already installed and available to you […]
-
PHP random links and resources
PHP the Right way – a website/book full of the most useful information you will find about PHP
-
PHP Namespace information, links and resources
It is important to understand what namespaces are in PHP and how to use them. Otherwise you will be lost and have many pains. Videos Below is a series of great videos explaining PHP namespaces little by little in easy to find and digest chunks.\ PHP namespaces 1/10: What is a namespace in PHP? Everything […]
-
Symfony doctrine database secret configuration links and resources.
Storing secrets for Symfony applications – some ideas how to approach the topic
-
Symfony encore webpack compiling scss
I couldn’t remember where the hell in the documentation I saw this. This is how you tell yarn to run encore and compile everything. Down below the section Configuring Encore/webpack
-
Installing PHP composer programmatically with a bash script on linux
The easiest way to install Composer is by using the bash script provided here. What I do is use vim to create a file named composer-install.sh then post that script in it. I do this in any folder, then I move the script to make it global as suggested in the documentation here. Basically all […]
-
Links and resources about installing php and extensions
It took quite a bit of searching to find something that accurately describes how to currently install php and it’s extensions on Linux. How to install php on ubuntu Another good link on installing php 7.4 on ubuntu Enable php modules/extensions on ubuntu
-
PHP composer links and resources.
Composer is a dependency manager for PHP. Confusing to install, easy to use. Composer documentation – the actual documentation helps. A gentle introduction to composer as a dependency manager – excellent resource covering pretty much everything about PHP composer you could ever want to know. Well mostly.