shieldci / laravel
ShieldCI Laravel Package - Security and code quality analysis for Laravel applications
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.0
- illuminate/console: ^9.0|^10.0|^11.0|^12.0
- illuminate/contracts: ^9.0|^10.0|^11.0|^12.0
- illuminate/http: ^9.0|^10.0|^11.0|^12.0
- illuminate/support: ^9.0|^10.0|^11.0|^12.0
- illuminate/view: ^9.0|^10.0|^11.0|^12.0
- larastan/larastan: ^2.0|^3.0
- phpstan/phpstan: ^1.10|^2.0
- shieldci/analyzers-core: ^1.0
Requires (Dev)
- laravel/pint: ^1.13
- mockery/mockery: ^1.6
- orchestra/testbench: ^7.0|^8.0|^9.0
- phpunit/phpunit: ^10.0
- dev-master
- v1.6.1
- v1.6.0
- v1.5.19
- v1.5.18
- v1.5.17
- v1.5.16
- v1.5.15
- v1.5.14
- v1.5.13
- v1.5.12
- v1.5.11
- v1.5.10
- v1.5.9
- v1.5.8
- v1.5.7
- v1.5.6
- v1.5.5
- v1.5.4
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.0
- v1.0.12
- v1.0.11
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.1.13
- v0.1.12
- v0.1.11
- v0.1.10
- v0.1.9
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- dev-fix/suppressed-issues-alignment
- dev-chore/changelog-v1.6.0
- dev-feature/configuration-snapshot
- dev-feat/suppressed-issue-tracking
- dev-fix/skipped-analyzers-not-found-error
- dev-fix/remove-lock-file-code-snippets-and-line-numbers
- dev-fix/naming-convention-remove-table-string-check
- dev-docs/trim-readme-add-gif
- dev-fix/scoring-consistency-ci-vs-local
- dev-chore/v1.5.15-changelog
- dev-fix/hyperlink-ci-osc8-detection
- dev-fix/run-in-ci-env-file-security
- dev-fix/run-in-ci-flags-env-permissions-cache
- dev-chore/changelog-v1.5.13
- dev-fix/silent-failure-broad-catch-low-severity-false-positives
- dev-fix/service-container-resolution-false-positives
- dev-fix/mixed-query-builder-line-reporting
- dev-fix/missing-db-transactions-guard-clause-false-positive
- dev-chore/changelog-v1.5.11
- dev-fix/logic-in-blade-props-aware-false-positive
- dev-fix/helper-function-abuse-unique-count
- dev-fix/fat-model-null-line-numbers
- dev-feat/eloquent-nplusone-registry-architecture
- dev-fix/chunk-missing-analyzer-false-positives
- dev-refactor/shorten-service-container-recommendations
- dev-feat/multiline-docblock-suppression
- dev-fix/custom-error-page-dynamic-recommendation
- dev-chore/v1.5.7-changelog
- dev-fix/unused-global-middleware-laravel-11
This package is auto-updated.
Last update: 2026-03-13 23:43:15 UTC
README
Open-source AI-powered code quality analysis for Laravel applications with 73 comprehensive analyzers covering security, performance, reliability, code quality, and best practices.
Built on top of shieldci/analyzers-core (v1.x) - a shared, framework-agnostic foundation for static analysis tools.
Requirements
- PHP 8.1 or higher
- Laravel 9.x, 10.x, 11.x, 12.x
Architecture
This package uses shieldci/analyzers-core for its core analyzer functionality, providing:
- Type-safe enums (Status, Category, Severity)
- Immutable value objects (Location, Issue, AnalyzerMetadata)
- Abstract base classes (AbstractAnalyzer, AbstractFileAnalyzer)
- AST parsing with nikic/php-parser
- Result formatters (JSON, Console)
- Comprehensive utilities (CodeHelper, FileParser)
Installation
composer require shieldci/laravel
Configuration
Publish the configuration file:
php artisan vendor:publish --tag=shieldci-config
Usage
Run the analysis:
php artisan shield:analyze
Options
Run a specific analyzer:
php artisan shield:analyze --analyzer=sql-injection
Run analyzers by category:
php artisan shield:analyze --category=security
Output as JSON:
php artisan shield:analyze --format=json
Save report to file:
php artisan shield:analyze --output=report.json
Advanced Features
Baseline Support (Gradual Adoption)
Generate a baseline to suppress existing issues and only catch new ones:
# Generate baseline from current state (all analyzers, respects config) php artisan shield:baseline # Generate baseline for CI mode (only CI-compatible analyzers) php artisan shield:baseline --ci # Merge with existing baseline php artisan shield:baseline --merge # Analyze against baseline (only NEW issues reported) php artisan shield:analyze --baseline
CI Mode (Optimized for CI/CD)
Skip slow or network-dependent analyzers in CI/CD:
# Run in CI mode (only CI-compatible analyzers)
php artisan shield:analyze --ci
Whitelist/blacklist specific analyzers in config/shieldci.php:
'ci_mode_analyzers' => ['sql-injection', 'xss-vulnerabilities', 'csrf-protection'], 'ci_mode_exclude_analyzers' => ['vulnerable-dependencies', 'frontend-vulnerable-dependencies'],
Don't Report (Exit Code Control)
Run informational analyzers without failing CI:
// config/shieldci.php 'dont_report' => [ 'missing-docblock', // Informational only 'commented-code', // Won't fail CI ],
Compact Output
Limit displayed issues per check:
# Show only 3 issues per check
SHIELDCI_MAX_ISSUES=3 php artisan shield:analyze
Environment-Aware Analyzers
Some analyzers are only relevant in specific environments. ShieldCI automatically handles multi-environment setups through environment mapping.
Standard environments (no configuration needed):
local- Local developmentdevelopment- Development serverstaging- Staging/pre-productionproduction- Productiontesting- Automated testing
Custom environments (configure mapping):
// config/shieldci.php 'environment_mapping' => [ 'production-us' => 'production', 'production-eu' => 'production', 'staging-preview' => 'staging', 'prod-1' => 'production', ],
How it works:
- Analyzers declare which environments they're relevant for (e.g.,
['production', 'staging']) - Custom environment names are automatically mapped to standard types
- Analyzers run only in their relevant environments
Example: AutoloaderOptimizationAnalyzer only runs in production/staging environments.
Available Analyzers
ShieldCI includes 73 comprehensive analyzers across five categories:
| Category | Count | Coverage |
|---|---|---|
| Security | 22 | Complete OWASP Top 10 2021 |
| Performance | 18 | Optimize speed and efficiency |
| Reliability | 13 | Ensure stability and correctness |
| Code Quality | 5 | Improve maintainability |
| Best Practices | 15 | Laravel-specific patterns |
→ Full Analyzer Reference — all 73 analyzers with examples and fix guidance
Configuration Options
See config/shieldci.php for all available configuration options.
Fail Conditions
Configure when the analysis should fail:
'fail_on' => 'critical', // never, critical, high, medium, low 'fail_threshold' => 80, // Minimum score to pass (0-100)
Paths
Configure which paths to analyze:
'paths' => [ 'analyze' => ['app', 'config', 'database', 'routes'], ], 'excluded_paths' => [ 'vendor/*', 'node_modules/*', 'storage/*', ],
Creating Custom Analyzers
Quick example:
<?php namespace ShieldCI\Analyzers\Security; use ShieldCI\AnalyzersCore\Abstracts\AbstractFileAnalyzer; use ShieldCI\AnalyzersCore\Contracts\ResultInterface; use ShieldCI\AnalyzersCore\ValueObjects\{AnalyzerMetadata, Location}; use ShieldCI\AnalyzersCore\Enums\{Category, Severity}; class MyAnalyzer extends AbstractFileAnalyzer { protected function metadata(): AnalyzerMetadata { return new AnalyzerMetadata( id: 'my-analyzer', name: 'My Custom Analyzer', description: 'Checks for custom security issues', category: Category::Security, severity: Severity::High, ); } protected function runAnalysis(): ResultInterface { // Your analysis logic $issues = []; foreach ($this->getPhpFiles() as $file) { // Analyze files } return empty($issues) ? $this->passed('No issues found') : $this->failed('Issues detected', $issues); } }
Testing
composer test # 400+ tests composer test-coverage # 98%+ code coverage composer analyse # PHPStan Level 9
Documentation
- Full Documentation - Installation, configuration, and analyzer guides
- Getting Started - Quick start guide
- Analyzer Reference - All 73 analyzers with examples and fix guidance
- Analyzers Core - Core package documentation
License
MIT License. See LICENSE file for details.
