php

Back Open Paginator
24.04.2026 08:14
michael (@michael@mstdn.thms.uk)

RE: mstdn.thms.uk/@michael/1163483

And yesterday my son released version 1 of php-deploykit: A bash tool to deploy #PHP #Laravel applications.

In this version he has actually built a webhook, a log viewer, and of course support of zero downtime deployments etc.

He's also built a documentation website at deploykit.nattho.com

And of course it's 100% built without AI, and only exteremly minimal help from me.

I am extremely proud of what he has built! 💪




Show Original Post


24.04.2026 05:20
decompwlj (@decompwlj@mathstodon.xyz)

A001743: Numbers in which every digit contains at least one loop (version 1)
A001743 ➡️ oeis.org/A001743

3D graph, threejs - webGL ➡️ decompwlj.com/3Dgraph/A001743.
3D graph Gen, threejs animation ➡️ decompwlj.com/3DgraphGen/A0017
2D graph, first 500 terms ➡️ decompwlj.com/2Dgraph500terms/

#decompwlj #math #mathematics #maths #sequence #OEIS #JavaScript #php #graph #3D #threejs #webGL #triangular #numbers #primes #PrimeNumbers #palindromes #animation #FundamentalTheoremOfArithmetic #sequences #NumberTheory #classification #integer #decomposition #number #theory #equation #graphs #sieve #fundamental #theorem #arithmetic #research





Show Original Post


24.04.2026 05:16
decompwlj (@decompwlj@mathstodon.xyz)

A001742: Numbers whose digits contain no loops (version 2)
A001742 ➡️ oeis.org/A001742

3D graph, threejs - webGL ➡️ decompwlj.com/3Dgraph/A001742.
3D graph Gen, threejs animation ➡️ decompwlj.com/3DgraphGen/A0017
2D graph, first 500 terms ➡️ decompwlj.com/2Dgraph500terms/

#decompwlj #math #mathematics #maths #sequence #OEIS #JavaScript #php #graph #3D #threejs #webGL #triangular #numbers #primes #PrimeNumbers #palindromes #animation #FundamentalTheoremOfArithmetic #sequences #NumberTheory #classification #integer #decomposition #number #theory #equation #graphs #sieve #fundamental #theorem #arithmetic #research





Show Original Post


24.04.2026 03:49
waterkip (@waterkip@defcon.social)

Two weeks ago I ranted a bit about PHP composer. So I wrote about it and vented. Read how my evening went:

wesley.schwengle.net/article/i

Never thought docker was gonna be a used to scaffold a project, but why not?

#php #laravel #livewire #perl #scaffolding #rant #vent




Show Original Post


24.04.2026 03:45
waterkip (@waterkip@defcon.social)

Two weeks ago I ranted a bit about PHP composer. So I wrote about it and vented. Read how my evening went:

wesley.schwengle.net/article/i

Never thought docker was gonna be a used to scaffold a project, but why not?

#php #laravel #livewire #perl #scaffolding #rant #vent




Show Original Post


24.04.2026 00:05
display (@display@inne.city)

Recently slopped me
° StartDir\ProjectRenderer
° StartDir\ProjectScanner
startdir.de/install/?source=St…
to extract and list all my PHP projects dependencies:
startdir.de/install/?page_proj…

$ProjectScanner->scan( __DIR__.\DIRECTORY_SEPARATOR.'packages-path...');


CREATE TABLE `licenses` (
`id` int(11) NOT NULL,
`project_name` varchar(255) NOT NULL,
`project_path` mediumtext NOT NULL,
`license_name` varchar(100) DEFAULT NULL,
`license_type` varchar(100) DEFAULT NULL,
`license_text` longtext DEFAULT NULL,
`license_hash` char(64) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`spdx_expression` varchar(255) DEFAULT NULL,
`spdx_normalized` varchar(255) DEFAULT NULL,
`spdx_detected` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `projects` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`title` varchar(255) DEFAULT NULL,
`description` mediumtext DEFAULT NULL,
`path` mediumtext NOT NULL,
`composer_path` mediumtext DEFAULT NULL,
`license_file_path` mediumtext DEFAULT NULL,
`is_vendor` tinyint(1) DEFAULT 0,
`parent_project_name` varchar(255) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`homepage` mediumtext DEFAULT NULL,
`repository_url` mediumtext DEFAULT NULL,
`repository_type` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


ALTER TABLE `licenses`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `uniq_project_hash` (`project_name`,`project_path`(255),`license_hash`),
ADD KEY `idx_project_lookup` (`project_name`,`project_path`(255)),
ADD KEY `idx_spdx_norm` (`spdx_normalized`);


ALTER TABLE `projects`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `uniq_name_path` (`name`,`path`(255)),
ADD KEY `idx_parent` (`parent_project_name`),
ADD KEY `idx_is_vendor` (`is_vendor`);

ALTER TABLE `licenses`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

ALTER TABLE `projects`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
COMMIT;

#PHP




Show Original Post


23.04.2026 20:51
combatwombat (@combatwombat@hachyderm.io)

Ha! This is the culprit for Laravels godless coding style: php-fig.org/psr/psr-12/

"Allman-style" braces on a newline, wasting precious vertical pixels. But only for classes and functions. if/else etc. get the proper Kernighan & Ritchie style. So it's not even consistent. And since it is a PSR, this blasphemy will spread. We should not let it.

#laravel #php #aestheticallychallenged #wastefulbracespace





Show Original Post


23.04.2026 20:45
admin (@admin@mastodon.raddemo.host)

How to Create #PHP #Cron Jobs on Linux Server

This guide demonstrates how to create PHP cron jobs on Linux server.
What are PHP Cron Jobs?
Cron is the standard Linux scheduler used to run scripts automatically at defined intervals. PHP cron jobs are commonly used for automation tasks such as backups, billing runs, log cleanup, monitoring scripts, email campaigns, and application maintenance.
READ ALSO: cPanel Shared Hosting Server Specs ...
Continued 👉 blog.radwebhosting.com/create- #cronjob





Show Original Post


23.04.2026 19:46
qweb (@qweb@mastodon.qweb.co.uk)

Just in case anyone else here didn't realise that #PHP's strlen() function doesn't return the character length of a string, or that str_shuffle() breaks strings containing certain characters!

qweb.co.uk/blog/mb_str_shuffle




Show Original Post


23.04.2026 19:45
hlrx (@hlrx@techhub.social)

Any #Laravel developers already integrated #ActivityPub into their projects? I’m on the lookout for a good library 🕵️‍♂️
There is github.com/dansup/laravel-acti from @dansup but it doesn’t seem to be maintained 😔
#php #fediverse #dev




Show Original Post


23.04.2026 17:59
zend (@zend@phpc.social)

Curious how OpenAI fits into modern PHP apps? 🤔

This guide breaks down the major GenAI models PHP developers should know, how to make your first OpenAI API call, and what to consider around security, compliance, and scalability.

Get the details >> ter.li/ns6ssnyx

#Zend #PHP





Show Original Post


23.04.2026 17:45
jclermont (@jclermont@phpc.social)

What if your commitment to consistency is actually making your codebase a little worse? A short lesson from a recent code review. #php #laravel masteringlaravel.io/daily/2026




Show Original Post


1 ...8 9 10 11 12 13 14 15 16 17 18 ...524
UP