atlas news
    
Reddit : PHP
15  avril     06h00
Weekly help thread
   Hey there This subreddit isn ;t meant for help threads, though there ;s one exception to the rule: in this thread you can ask anything you want PHP related, someone will probably be able to help you out ; submitted by ; u brendt gd link ; comments
19  avril     11h29
Junior, middle and senior php developers
   Hi everyone, how do you determine the seniority of a php dev... can’t be just based on experience right So, what go to questions or tests do you use to figure this out ; submitted by ; u TheMonkiGod link ; comments
18  avril     22h08
Created a PHP package dedicated to path management, feedback would be welcome
   I really enjoyed using the path.py lib when I was working with files in python, so I decided to try to create something similar in PHP: path php The objective here is to create a light, standalone, multi platform lib for PHP, allowing to handle paths as objects. Using it allows you to make things...
19  avril     15h42
Submitted for your disapproval ;), my project PHP; Bootstrap Table Edit
   ; submitted by ; u xdethbear link ; comments
    09h38
DDEV Lando and other alternatives?
   We ;re currently using Lando for all our projects but I ;ve had many issues with it randomly breaking and or missing features like using .env variables in config files, but I have not had a single use case that was completely impossible in Lando. So I was wondering: can DDEV or any other...
18  avril     15h31
Healthcheck library conforming to IETF’s healthcheck RFC
   ; submitted by ; u gadelat link ; comments
    10h14
Exploring Go as a PHP Developer: Insights, Experiences, and Comparisons
   Hi, I ;ve been a PHP dev for about years now longer if you count using it as a hobby and am looking to branch out and try another backend language. It seems Go is pretty popular and I have started checking it out. I was wondering if you as a PHP dev have learned Go and have any opinions...
17  avril     23h01
Does Anyone Still Need PHP 5 Support in 2024?
   UPDATE https: github.com paragonie sodium compat pull We ;ve decided to go ahead with a new major version. The original comment is below the line. We maintain polyfill libraries random compat and sodium compat, which many of you use as a recursive dependency . Both...
    18h41
Official Standard way for checking if array is empty
   Recently a small disagreement occurred at a code review when my new colleagues used array for checking if array is empty. I requested a change because I always check for empty array with empty array and I have never honestly seen array used before. I even needed to check if it...
    21h42
Deployer v7.4.0 release
   ; submitted by ; u Elfet link ; comments
    19h11
Iterating only IteratorAggregate instead of Iterator
   I ;ve been working with PHP iterator classes interfaces for some time. After a while I ;ve started creating classes to ease my work and remove some of the duplicite code I ;ve done in my projects. When I started to think about what type I should use i.e. iterable, Traversable, Iterator......
    10h57
Detecting MITM with a server-side PHP script
   In some circumstances a client computer can be rigged with a man in the middle MITM hook webpages are loaded. Some employers may install this, as well as Facebook is known to have been doing it via their free VPN. Say, if someone loads my website in their web browser. My site uses Let’s...
    14h28
Three-point construction or PHPDoc?
   Three point construction or PHPDoc We have a three point construction ... , which allows you to use an unlimited number of function arguments or provide an array decompression as an example . I have a question about who does it and how. Imagine that we have a function that takes an array of...
15  avril     17h02
RFC vote opened: Property Hooks
   ; submitted by ; u bwoebi link ; comments
    20h10
PHP TypeLang 1.0.0 Release
   PHP TypeLang . . release https: github.com php type language parser I tried to collect all the features of the modern Psalm, PHPStan, Phan, phpDocumentor and others in one place and implement an independent parser. In addition, I organized documentation on all the syntactic features of this...
    16h57
Any published keyboard shortcut maps for PhpStorm out there?
   As a long term holdout on PhpStorm, I ;ve never been about to jive with its default keyboard shortcuts. As I ;ve plodded along over the past couple years, I ;ve been adding thing to my own quot;VS Code ish quot; setting, but I ;d much rather follow someone else ;s lead. Wondering if...
    06h20
Building Workflows in PHP with Ecotone
   ; submitted by ; u Dariusz Gafka link ; comments
14  avril     20h21
What’s the scalable (teams) architecture for growing Laravel applications that works with Active Record limitations without making a mess?
   I started a new job. It ;s a Laravel app that is impossible to maintain and they are asking for help. It looks just like the Laravel documentation except for huge classes inside service folders. There ;s a lot of confusion to what ;s the validation layer, business rules, assertions,...
15  avril     14h12
I’m looking for a secure PHP solution script that can manage multi-level login admin access. Any suggestions?
   By multi level I mean it supports a login system that limits access to certain pages or sections of the website. Think wordpress login categories like Admin, Editor etc that hide pages and functionalities. I am scared to build this on my own due to security risks and loopholes hence looking for a...
14  avril     11h29
Deptrac v2 release on the horizon
   It took some time to get the next release ready. But here we are on the final stretch. We changed the way Deptrac will be distributed in the future. Goodbye Deptrac shim and hello scoped release. Same front facing dependencies but distributed as plain php and yes it still ships with a phar. But...
    20h33
Thinking about Aggregates in Active Record
   ; submitted by ; u lyotox link ; comments
    10h59
A Laravel newsletter
   Hi folks, from time to time, friends or colleagues ask me how I stay updated with Laravel and PHP. I usually recommend checking out Laravel News, following this subreddit, and some accounts on Twitter, but it doesn ;t always work for them. So, I thought about starting a dedicated Laravel...
12  avril     20h19
CSV Blueprint: Auto-validate CSV files using precise YAML-defined schemas
   Hello everyone, Recently, I was tasked with verifying a large number of CSV files to ensure they adhered to specific formatting standards, data integrity, and mathematical correctness. Given that these files originated from various services, it was essential to automate the process while...
    15h38
Is there a way to find source code of websites applications using PHP 1 2 3
   I want to see how php code looked in version ; submitted by ; u DankerOfMemes link ; comments
    09h51
DbToolsBundle: a Symfony bundle to backup, restore and anonymize your data
   We just made a simple tool to run a complete anonymization workflow on our Symfony database, and we ;d like to introduce it to the community: https: dbtoolsbundle.readthedocs.io en stable https: github.com makinacorpus DbToolsBundle Feel free to test, comment, report issues, we are looking for...
    03h30
Representing API Payloads Using Classes
   I’m a junior to mid level php dev with a little over a year of experience. I’ve been creating models to represent API payloads for different entities, like for creating a Sales Order or creating a Quote, when sending requests to third party APIs as a way of self documenting within the code. Is this...