spryker-sdk / security-checker
This package is abandoned and no longer maintained.
No replacement package was suggested.
A security checker for your composer.lock
0.2.3
2025-08-07 14:24 UTC
Requires
- php: >=8.2
- symfony/console: ^4.0.0 || ^5.0.0 || ^6.0.0
- symfony/options-resolver: ^4.0.0 || ^5.0.0 || ^6.0.0
- symfony/process: ^4.0.0 || ^5.0.0 || ^6.0.0
Requires (Dev)
- phpstan/phpstan: ^1.2.0
- slevomat/coding-standard: ^6.2
- spryker/code-sniffer: ^0.15.6
- squizlabs/php_codesniffer: ^3.5
This package is auto-updated.
Last update: 2026-03-06 06:59:36 UTC
README
Checks security issues in your project dependencies. It wraps FriendsOfPHP/security-advisories and warns about any found issues.
DEPRECATED - This module is not continued at this point.
Installation
composer require --dev spryker-sdk/security-checker
Configuration
After the installation you will need to enable it in your ConsoleDependencyProvider:
use SecurityChecker\Command\SecurityCheckerCommand; protected function getConsoleCommands(Container $container): array { ... $commands[] = new SecurityCheckerCommand();
Commands
Security checker provides the following command:
console security:check- check for security issues in composer.lock file.