Tag: Php
-
How we automatically share new content on social media
Posted on January 1, 2023, Level beginner Resource Length medium
When authors publish a new post on Laravel News, many things happen in the background for it to be automatically sent out to all the places around the internet. In this post, let's look at how they share it with all the services. By Eric L. Barnes.
Tags php cicd cio miscellaneous
-
Reducing errors with type hinting in PHP
Posted on December 25, 2022, Level intermediate Resource Length medium
The search box. Where would we be without it? Search is a powerful tool, and as one of the most common elements that we interact with on a daily basis, search input usability is an important consideration. By Dawson Beggs.
Tags php app-development web-development programming
-
CQRS and Event Sourcing implementation in PHP
Posted on August 1, 2022, Level intermediate Resource Length long
Command Query Responsibility Segregation (CQRS) with Domain Driven Design is more and more popular recently. Its implementation in PHP, which will be the topic of the article, generates some new possibilities, making a process more efficient. For example, it gives you the opportunity to restore the whole system easily. By Michał Żądło.
Tags php app-development web-development frameworks event-driven
-
Linked Lists explained in PHP
Posted on July 1, 2022, Level intermediate Resource Length medium
As one of the most common data structures, the linked list has to be one of the simplest in concept; yet still very powerful. In this post we will be looking at what linked lists are; what types of linked lists there are; when to use a linked list; and whether or why a linked list might be better than an array. By Doeke Norg.
Tags php web-development learning app-development programming
-
Pest - PHP testing framework that goes above and beyond PHPUnit
Posted on April 25, 2022, Level intermediate Resource Length short
When building third-party APIs, it's important to test your code in every runtime scenario you've seen or can foresee. For this, a robust and easy to use & maintain testing framework is a must. By Peter Villani.
Tags php web-development app-development tdd
-
How to start using generic types in PHP
Posted on April 14, 2022, Level intermediate Resource Length medium
Generic types are templates which allow us to write the code without specifying a particular type of data on which the code will work. Thanks to them, we avoid the redundancy and the objects operate on the previously declared types. By Jarek Szutkowski.
Tags php web-development app-development learning
-
Async & await at the edge with ReactPHP
Posted on December 16, 2021, Level intermediate Resource Length short
PHP 8.1 is out and the hip new feature for non-blocking and asynchronous programming in PHP are fibers. In this post we're going to explore them and see how we at ReactPHP will start with them at the edge. By Cees-Jan Kiewiet.
Tags open-source apis php app-development web-development
-
How to build GitHub Actions in PHP with Minicli and Docker
Posted on November 19, 2021, Level intermediate Resource Length medium
GitHub Actions facilitates creating CI/CD automated workflows that can be triggered by GitHub events, such as when a pull request is created, a merge is made, or a new comment is posted on an issue. What some people may not know is that you can also run GitHub actions at scheduled times, based on cron expressions. By Erika Heidi.
Tags cicd containers devops php apis app-development
-
What's new in PHP 8.1
Posted on November 8, 2021, Level beginner Resource Length medium
As with every release, PHP 8.1 adds some nice new features. Keep in mind that this list will grow over the year. By Brent.
Tags php web-development programming app-development
-
Deploy your Laravel app as a static site to Netlify
Posted on August 9, 2021, Level beginner Resource Length short
With JAMstack, your entire site is pre-built as static HTML files and hosted on CDN. Since those static files are served via CDN, it's blazing fast, scalable, and more secure as there is no backend servers and databases. By Ryuta Hamasaki.
Tags app-development web-development programming cloud php
-
Laravel Octane v1.0 is here
Posted on July 2, 2021, Level beginner Resource Length short
Laravel Octane, a tool to supercharge your Laravel application's performance. By Paul Redmond.
Tags php app-development web-development performance
-
Writing better regular expressions in PHP
Posted on June 12, 2021, Level intermediate Resource Length medium
Regular Expressions are powerful, PHP but they are not known to be readable, and more often than not, maintaining a regular expression is not a straight-forward task. By Ayesh Karunaratne.
Tags php web-development app-development programming