Composer 2.4 features scanning the installed and new packages for known security vulnerabilities. When a new package is installed, or an existing package is updated, Composer looks up the package version numbers on known security vulnerability announcements, and reports if there are any known vulnerabilities in the list of packages.
PHP
Lock a shared test database for parallel test processes
AI coding agents love to run tests in parallel processes. That’s great until multiple processes try to use the same local test database at once. A small file lock can serialize access and stop those Read more…