Files
php-security-linter/composer.json
Yutaka Kurosaki 62a4d499ae Update repository URLs to Gitea
- Change all URLs from github.com to opensource.rogarithm.net
- Update Docker image references to local build (php-security-linter:latest)
- Fix Gitea Issues URL in CONTRIBUTING.md

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-02 12:07:21 +09:00

48 lines
1.2 KiB
JSON

{
"name": "security-linter/php-laravel",
"description": "A static security analysis tool for PHP and Laravel applications with recursive taint analysis",
"version": "0.0.1",
"type": "project",
"license": "MIT",
"keywords": [
"security",
"linter",
"static-analysis",
"php",
"laravel",
"xss",
"sql-injection",
"vulnerability",
"sast"
],
"homepage": "https://opensource.rogarithm.net/rogarithm/php-security-linter",
"support": {
"issues": "https://opensource.rogarithm.net/rogarithm/php-security-linter/issues",
"source": "https://opensource.rogarithm.net/rogarithm/php-security-linter"
},
"authors": [
{
"name": "Security Linter Contributors",
"homepage": "https://opensource.rogarithm.net/rogarithm/php-security-linter/contributors"
}
],
"autoload": {
"psr-4": {
"SecurityLinter\\": "src/"
}
},
"require": {
"php": ">=8.1",
"nikic/php-parser": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"bin": [
"bin/security-lint"
],
"config": {
"sort-packages": true
}
}