Tootfinder

Opt-in global Mastodon full text search. Join the index!

@michabbb@social.vivaldi.net
2026-08-05 14:47:10

🔗 #PHP #Docker

@crell@phpc.social
2026-07-05 10:55:01

On empty return values. #PHP
garfieldtech.com/blog/empty-re

@phpugmrn@phpc.social
2026-08-05 11:44:27

Our next #phpugmrn meetup is happening on August 20!
We're excited to welcome @… as our guest speaker. As the Executive Director of The PHP Foundation, Liz will introduce the foundation's mission, highlight its impact on the PHP ecosystem, and share ins…

@crell@phpc.social
2026-09-05 23:11:01

Top ten bits of advice for new conference speakers.
#PHP

@michabbb@social.vivaldi.net
2026-08-05 14:39:24

☝️ Someone out there is running "composer remove" as part of a deployment?! 🚨 Please don't.
⚠️ remove is a write operation. It edits composer.json, re-resolves the whole dependency tree and overwrites your lock file. Your carefully pinned versions? 💨 Gone. Silently upgraded.
✅ composer install --no-dev exists for exactly this reason. Your lock file is not a suggestion. 🔒
#php

@crell@phpc.social
2026-07-26 05:55:01

Functional programming isn't just for Haskell developers. It's for #PHP developers, too. "Thinking Functionally in PHP" is available from LeanPub.
leanpub.com/thinking-functiona

@wyri@toot-toot.wyrihaxim.us
2026-07-22 17:00:46

O hello PHP, haven't seen you toss this error at my before:
#php

@groupnebula563@mastodon.social
2026-07-22 22:54:09

anyone here experienced with #PHP stuff, #MIDI stuff, or both stuff, and willing to help out on a dumb little project of mine? we could use more hands (or paws, or other appendages)
boosts appreciated

@crell@phpc.social
2026-08-31 06:55:02

Let's be controversial: In modern #PHP, you should never type-hint an array.
garfieldtech.com/blog/array-ty

@wyri@toot-toot.wyrihaxim.us
2026-06-15 18:24:12

Updating a small project to the latest and greatest PHPStan and PHP versions:
#PHP #PHPStan

@sean@scoat.es
2026-06-09 03:52:13

Full circle happening to my developer career right now, friends!
#Swift now has a disambiguating PAAMAYIM_NEKUDOTAYIM! (and no, I did not look up how to spell that; it is burned into my mind from #PHP 25 years ago)

Screen shot from “What’s new in Swift” session at WWDS2026, showing “Rocket
@michabbb@social.vivaldi.net
2026-07-29 19:23:09

🧩 #Laravel LSP announced at #LaraconUS 2026: a first-party language server that teaches your editor about your app #PHP

@phpugmrn@phpc.social
2026-08-13 11:22:07

Our next #phpugmrn meetup is happening on Thursday next week!
We're excited to welcome @elizabeth as our guest speaker. As the Executive Director of The PHP Foundation, Liz will introduce the foundation's mission, highlight its impact on the PHP ecosystem, and share insights into its upcoming plans.
Sign up here

@crell@phpc.social
2026-06-26 16:53:29

I have now reached the "how did this ever work?" stage of debugging.
#PHP #Programming

@michabbb@social.vivaldi.net
2026-08-02 09:19:17

📋 #queuesql is an #opensource #Laravel package that turns any write query — delete, update, insert, upsert — into parallel batched queue jobs

@crell@phpc.social
2026-08-21 17:16:38

The number of PHP code-validation tools that have PHPStorm plugins that don't know how to handle running in a container is mind boggling. I don't think I've ever gotten a single one to work.
#PHP #PHPStorm

@crell@phpc.social
2026-07-26 16:35:52

I hate dealing with file permissions. *HATE*.
#Programming #PHP

@crell@phpc.social
2026-06-25 09:55:02

Running #Lando on GitHub Actions. #Laravel #PHP

@sean@scoat.es
2026-06-17 23:41:25

This came up with @… @… and @… tonight…
At the

@wyri@toot-toot.wyrihaxim.us
2026-07-13 21:09:57

Confirmed one of my expectations that the current/old NAS I'm using was the bottleneck for image conversion. Hooked up a new NAS over the weekend, directly in the VLAN, and with faster drives; almost directly on the first run, proving that #PHP and the #RaspberryPi's where neve…

@michabbb@social.vivaldi.net
2026-06-19 20:50:12

🏗️ Worker supervisor — a Horizon replacement that auto-scales workers on any driver, with crash-recovery, graceful shutdown & multi-node fleet support, validated by a chaos battery
🧰 Requires #PHP 8.2 , #Laravel 12/13 & Livewire 3.5 — install via Composer, ships

@wyri@toot-toot.wyrihaxim.us
2026-06-11 21:54:05

Has anyone else seen this "No space left on device" on GitHub Actions come up recently?
#GitHub #PHP #CI

@crell@phpc.social
2026-08-21 20:13:20

Good documentation is a gift you give yourself in a month.
#Programming #PHP

@michabbb@social.vivaldi.net
2026-06-09 08:20:55

🔍 #PHPFTS: a self-contained full-text search engine in pure #PHP — no extensions, no dependencies, just files. Trigram indexing, BM25 IDF scoring, filters & typo-tolerant matching. Runs on any PHP 8.1 shared host.

@crell@phpc.social
2026-08-20 16:44:02

Null is problematic, but why? Let's see why, and let that guide us to new alternatives. #PHP
garfieldtech.com/blog/much-ado

@michabbb@social.vivaldi.net
2026-06-19 20:50:10

🛡️ #Vigilance is a driver-agnostic control center for #Laravel queues, jobs, commands & the scheduler — plus whole-app APM, tracing, metrics, alerts & uptime. Self-hosted & production-safe #PHP

@crell@phpc.social
2026-08-21 18:31:40

TFW you realize you already wrote a tool to solve the problem you're working on, but you totally forgot about it so used 50 workarounds that your tool exists to already solve for you...
#Programming #PHP

@michabbb@social.vivaldi.net
2026-08-02 20:39:38

📋 #Yerd is an open-source local #PHP development environment for #macOS and #Linux — a rootless

@crell@phpc.social
2026-08-18 18:33:42

So help me, I am pondering writing my own DI container. What is wrong with me? (Or with the existing market, for that matter.)
#php

@crell@phpc.social
2026-08-19 16:19:16

Programmatic database resets
#PHP #Programming

@crell@phpc.social
2026-07-15 14:00:02

When should you use #PHP Enums, and when shouldn't you?
garfieldtech.com/blog/on-the-u

@michabbb@social.vivaldi.net
2026-06-11 06:11:46

🔌 Non-blocking I/O for regular #PHP functions. fread, fwrite, file_get_contents, ob_start, curl, #MySQL, and #PostgreSQL now work asynchronously without extra effort.
🖥️ Built-in TrueAsync S…

@michabbb@social.vivaldi.net
2026-06-11 06:11:46

#TrueAsync is an experimental library bringing true asynchronous programming to #PHP — coroutines, async/await, and non-blocking I/O built into the language core. Write high-performance concurrent applications with clean, readable code and minimal changes.

@crell@phpc.social
2026-06-12 00:08:08

RE: #php

@crell@phpc.social
2026-08-10 18:23:33

The perils of under-engineering:
#PHP #Programming

@crell@phpc.social
2026-06-12 15:58:30

Take the JetBrains developer survey 2026! (Use the link below so I get referral credit. :-) )
surveys.jetbrains.com/s3/devel

@michabbb@social.vivaldi.net
2026-08-23 20:45:28

📊 Requires #PHP 8.2 and Laravel 12 or 13, works on #MySQL, #PostgreSQL & #SQLite. State liv…

@crell@phpc.social
2026-08-10 15:20:57

RE: #Rust finally gets asymmetric visibility, two years after

@crell@phpc.social
2026-08-17 18:48:51

I mean, this is fair and accurate for all languages mentioned...
#Programming #PHP #CPP #Javascript

@michabbb@social.vivaldi.net
2026-08-17 00:51:16

📊 Requires #PHP 8.3 and #Laravel 12, built on laravel/ai with Anthropic as default provider (#OpenAI, #Gemini, #Groq

@kingconsult@berlin.social
2026-08-17 11:50:45

> @… announces 60 projects strenghtening the #DigitalCommons ¹
➡️ There are two #Fediverse-related tools:
#ActivityBot — A full #ActivityPub server in a single #PHP file
👉 #Fedipub#Ruby Library for adding #ActivityPub Federation
👉 #NLnet #OpenSource #SocialMedia #OpenSocialWeb #FOSS #FLOSS