diff --git a/CHANGELOG.md b/CHANGELOG.md index 479039a..05e5d3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -74,4 +74,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Value-based credential detection to reduce false positives - Escape function recognition (htmlspecialchars, e(), etc.) -[0.0.1]: https://github.com/security-linter/php-laravel/releases/tag/v0.0.1 +[0.0.1]: https://opensource.rogarithm.net/rogarithm/php-security-linter/releases/tag/v0.0.1 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f5d5843..c5577c7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ Please be respectful and constructive in all interactions. We welcome contributo ### Reporting Bugs -1. Check if the issue already exists in [GitHub Issues](https://github.com/security-linter/php-laravel/issues) +1. Check if the issue already exists in [Gitea Issues](https://opensource.rogarithm.net/rogarithm/php-security-linter/issues) 2. If not, create a new issue with: - Clear description of the problem - Steps to reproduce @@ -52,7 +52,7 @@ Security linters can produce false positives (safe code flagged as vulnerable) o ### Installation ```bash -git clone https://github.com/security-linter/php-laravel.git +git clone https://opensource.rogarithm.net/rogarithm/php-security-linter.git cd php-laravel composer install ``` diff --git a/README.md b/README.md index 242e0a8..b6d84c8 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ No PHP or Composer environment required. ```bash # Clone the repository -git clone https://github.com/security-linter/php-laravel.git +git clone https://opensource.rogarithm.net/rogarithm/php-security-linter.git cd php-laravel-security-linter # Install (builds Docker image and installs command) @@ -49,7 +49,7 @@ php-security-lint app/ -s high Requires PHP 8.1+ and Composer. ```bash -git clone https://github.com/security-linter/php-laravel.git +git clone https://opensource.rogarithm.net/rogarithm/php-security-linter.git cd php-laravel-security-linter composer install php bin/security-lint /path/to/target @@ -267,7 +267,7 @@ jobs: - name: Run Security Linter run: | docker run --rm -v ${{ github.workspace }}:/target \ - ghcr.io/security-linter/php-laravel:latest \ + php-security-linter:latest \ /target -s high -f sarif -o /target/security.sarif - name: Upload SARIF @@ -280,7 +280,7 @@ jobs: ```yaml security-lint: - image: ghcr.io/security-linter/php-laravel:latest + image: php-security-linter:latest script: - security-lint . -s medium -f json -o security-report.json artifacts: @@ -336,7 +336,7 @@ PHPやComposerの環境構築なしで使用できます。 ```bash # リポジトリをクローン -git clone https://github.com/security-linter/php-laravel.git +git clone https://opensource.rogarithm.net/rogarithm/php-security-linter.git cd php-laravel-security-linter # インストール (Dockerイメージのビルドとコマンドのインストール) @@ -357,7 +357,7 @@ php-security-lint app/ -s high PHP 8.1以上とComposerが必要です。 ```bash -git clone https://github.com/security-linter/php-laravel.git +git clone https://opensource.rogarithm.net/rogarithm/php-security-linter.git cd php-laravel-security-linter composer install php bin/security-lint /path/to/target @@ -575,7 +575,7 @@ jobs: - name: Run Security Linter run: | docker run --rm -v ${{ github.workspace }}:/target \ - ghcr.io/security-linter/php-laravel:latest \ + php-security-linter:latest \ /target -s high -f sarif -o /target/security.sarif - name: Upload SARIF @@ -588,7 +588,7 @@ jobs: ```yaml security-lint: - image: ghcr.io/security-linter/php-laravel:latest + image: php-security-linter:latest script: - security-lint . -s medium -f json -o security-report.json artifacts: diff --git a/composer.json b/composer.json index 093409c..eebe557 100644 --- a/composer.json +++ b/composer.json @@ -15,15 +15,15 @@ "vulnerability", "sast" ], - "homepage": "https://github.com/security-linter/php-laravel", + "homepage": "https://opensource.rogarithm.net/rogarithm/php-security-linter", "support": { - "issues": "https://github.com/security-linter/php-laravel/issues", - "source": "https://github.com/security-linter/php-laravel" + "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://github.com/security-linter/php-laravel/contributors" + "homepage": "https://opensource.rogarithm.net/rogarithm/php-security-linter/contributors" } ], "autoload": {