Initial commit: PHP/Laravel Security Linter v1.0.0
A static security analysis tool for PHP and Laravel applications
with recursive taint analysis capabilities.
Features:
- Comprehensive vulnerability detection (XSS, SQL Injection,
Command Injection, Path Traversal, CSRF, Authentication issues)
- Recursive taint analysis across function calls
- Blade template analysis with context-aware XSS detection
- Smart escape detection and escape bypass detection
- Syntax highlighting in terminal output
- Multi-language support (Japanese/English)
- Docker support for easy deployment
- Multiple output formats (text, JSON, HTML, SARIF, Markdown)
- CI/CD integration ready (GitHub Actions, GitLab CI)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 15:18:53 +09:00
|
|
|
{
|
|
|
|
|
"name": "security-linter/php-laravel",
|
2026-02-02 11:57:18 +09:00
|
|
|
"description": "A static security analysis tool for PHP and Laravel applications with recursive taint analysis",
|
|
|
|
|
"version": "0.0.1",
|
Initial commit: PHP/Laravel Security Linter v1.0.0
A static security analysis tool for PHP and Laravel applications
with recursive taint analysis capabilities.
Features:
- Comprehensive vulnerability detection (XSS, SQL Injection,
Command Injection, Path Traversal, CSRF, Authentication issues)
- Recursive taint analysis across function calls
- Blade template analysis with context-aware XSS detection
- Smart escape detection and escape bypass detection
- Syntax highlighting in terminal output
- Multi-language support (Japanese/English)
- Docker support for easy deployment
- Multiple output formats (text, JSON, HTML, SARIF, Markdown)
- CI/CD integration ready (GitHub Actions, GitLab CI)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 15:18:53 +09:00
|
|
|
"type": "project",
|
|
|
|
|
"license": "MIT",
|
2026-02-02 11:57:18 +09:00
|
|
|
"keywords": [
|
|
|
|
|
"security",
|
|
|
|
|
"linter",
|
|
|
|
|
"static-analysis",
|
|
|
|
|
"php",
|
|
|
|
|
"laravel",
|
|
|
|
|
"xss",
|
|
|
|
|
"sql-injection",
|
|
|
|
|
"vulnerability",
|
|
|
|
|
"sast"
|
|
|
|
|
],
|
2026-02-02 12:07:21 +09:00
|
|
|
"homepage": "https://opensource.rogarithm.net/rogarithm/php-security-linter",
|
2026-02-02 11:57:18 +09:00
|
|
|
"support": {
|
2026-02-02 12:07:21 +09:00
|
|
|
"issues": "https://opensource.rogarithm.net/rogarithm/php-security-linter/issues",
|
|
|
|
|
"source": "https://opensource.rogarithm.net/rogarithm/php-security-linter"
|
2026-02-02 11:57:18 +09:00
|
|
|
},
|
|
|
|
|
"authors": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Security Linter Contributors",
|
2026-02-02 12:07:21 +09:00
|
|
|
"homepage": "https://opensource.rogarithm.net/rogarithm/php-security-linter/contributors"
|
2026-02-02 11:57:18 +09:00
|
|
|
}
|
|
|
|
|
],
|
Initial commit: PHP/Laravel Security Linter v1.0.0
A static security analysis tool for PHP and Laravel applications
with recursive taint analysis capabilities.
Features:
- Comprehensive vulnerability detection (XSS, SQL Injection,
Command Injection, Path Traversal, CSRF, Authentication issues)
- Recursive taint analysis across function calls
- Blade template analysis with context-aware XSS detection
- Smart escape detection and escape bypass detection
- Syntax highlighting in terminal output
- Multi-language support (Japanese/English)
- Docker support for easy deployment
- Multiple output formats (text, JSON, HTML, SARIF, Markdown)
- CI/CD integration ready (GitHub Actions, GitLab CI)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 15:18:53 +09:00
|
|
|
"autoload": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"SecurityLinter\\": "src/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"require": {
|
|
|
|
|
"php": ">=8.1",
|
|
|
|
|
"nikic/php-parser": "^5.0"
|
|
|
|
|
},
|
2026-02-02 11:57:18 +09:00
|
|
|
"require-dev": {
|
|
|
|
|
"phpunit/phpunit": "^10.0"
|
|
|
|
|
},
|
|
|
|
|
"bin": [
|
|
|
|
|
"bin/security-lint"
|
|
|
|
|
],
|
|
|
|
|
"config": {
|
|
|
|
|
"sort-packages": true
|
|
|
|
|
}
|
Initial commit: PHP/Laravel Security Linter v1.0.0
A static security analysis tool for PHP and Laravel applications
with recursive taint analysis capabilities.
Features:
- Comprehensive vulnerability detection (XSS, SQL Injection,
Command Injection, Path Traversal, CSRF, Authentication issues)
- Recursive taint analysis across function calls
- Blade template analysis with context-aware XSS detection
- Smart escape detection and escape bypass detection
- Syntax highlighting in terminal output
- Multi-language support (Japanese/English)
- Docker support for easy deployment
- Multiple output formats (text, JSON, HTML, SARIF, Markdown)
- CI/CD integration ready (GitHub Actions, GitLab CI)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 15:18:53 +09:00
|
|
|
}
|