Gustavo Mendesgustamms.hashnode.net·Aug 27, 2021Como mensurar a qualidade de código? PHPA maneira que apresentarei hoje é o grumphp. Com o GrumPHP é possível mensurar a qualidade de seu código em mais de 10 tipos diferentes de qualidade, mas mencionarei os 3 que acho mais interessante: PHPMD Com essa métrica é possível validar código e...13 likes·612 readsPHP
Varun Sridharanvarunsridharan.hashnode.net·Nov 11, 2020Adding Jetbrains Apps To Context MenuI have been using PHPStorm. for a few years now. and over the years I found it very hard to open a project. as I need to fire-up the PHPStorm App first then using the File menu I got to open the project. For it, I was not that easy as I keep switch...11 likes·223 readsDeveloper
Mirosław Farajewiczfilly.hashnode.net·Dec 11, 2019Featured10 most useful IDE hotkeys with GIF examplesDo you know what percentage of people do not use Ctrl+F when searching text on pages? Me neither. But the closest estimation done by Mozilla & TestPilot says that it ranges between 81% and 90%. The number is pretty shocking to me, but if you think a ...5 likes·244 readsProductivity
Ghanshyam DigitalforGhanshyam Digitalshyammakwana18.hashnode.net·Apr 18, 2023How to Set Up Pest Plugin in PHPStorm for SailFollow this step-by-step guide to install and configure Pest plugin for PEST/PHPUnit tests in PHPStorm. You'll learn how to create a new Run/Debug Configuration of type Pest and select your project's docker-compose.yml file in the "Configuration file...Laravel
Charanjeet Singhcharanjeet.hashnode.net·Jan 8, 2023Install php8.1-gd on Debian SystemIf you are facing any issues with installing php-gd library on your system then you are at the right place to find the solution. Just follow me for the steps to install gd library. It is not as easy as installing other extensions of php because it de...109 readsphpgd
Ejaz Alamsudo55.hashnode.net·Nov 14, 2022How to setup Xdebug 3 on Ubuntu and PHPStromThis guide is about setting up Xdebug version 3. The steps are the same for older versions, but some of the parameters are different in the PHP configuration file. So let's get started. First, download the Xdebug source from GitHub. Run the below com...66 readsdebugging
David Carrdcblogdev.hashnode.net·Nov 12, 2022Using Laravel Sail alongside PhpStormPackages Laravel Framework I'm trying out Laravel Sail for my local development, this post serves as documenting the process and getting PhpStorm to play nice with Sail. Sail is a tool for using docker without needing to use docker commands directly,...105 readssail
Abu Sayed Jobayerasjobayer.hashnode.net·Sep 20, 2022How to work in remote server with PhpStorm.Working in remote server is a daily stuff for a web developer. Vim, nano or such tools usually take place to work in such environment. They work fine. But, nothing beats experience of a strong IDE. I felt a bit annoyed when to work in remote server ...33 readsLaravel
Manjit Baishyamy-coding-roadmap.hashnode.net·Sep 14, 2022Day 24: Inheritance in PHPWell, we have learnt enough about class to move a few steps deeper. Here we will be talking about INHERITANCE. Inheritance basically means that another class can take the properties of one class. An example will clear things up. Suppose we have two c...52 readsPHPPhpStorm
Nicholas Azzopardithefrontender.hashnode.net·Sep 12, 2022How to Choose the Best IDE for YouWhat is an IDE? An IDE is a software/application that you can run on your computer. IDE stands for Integrated Development Environment. These IDEs are there to help and make developing easier by having different tools to assist and streamline the proc...194 readsTips and guides to help you become a successful developerVisual Studio Code
Manjit Baishyamy-coding-roadmap.hashnode.net·Aug 30, 2022Day 10: Working with Arrays in PHPAn array is a variable that can hold multiple pieces of information within itself. A single array can hold numerous pieces of information like strings, integers, floating points, boolean, etc. all inside a single array variable. An array can be simpl...PHPPHP
Manjit Baishyamy-coding-roadmap.hashnode.net·Aug 11, 2022Day 4: Data-types in PHPThere are four major and most frequently used data type in PHP. They are String, Integer, Float and a Boolean. As already mentioned earlier, we do not need to assign a data type to the variable, rather, the variable gets the data-type automatically f...54 readsPHPPHP
Manjit Baishyamy-coding-roadmap.hashnode.net·Aug 11, 2022Day 3: Variables in PHPOne of the greatest sides of PHP variables is that we do not need to define the variable type. The type gets defined immediately after the value has been assigned to it. The type of the data-type that the value is becomes the data-type of the variabl...73 readsPHPPHP