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>
This commit is contained in:
2026-02-02 12:07:21 +09:00
parent 208227b77e
commit 62a4d499ae
4 changed files with 15 additions and 15 deletions

View File

@@ -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

View File

@@ -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
```

View File

@@ -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:

View File

@@ -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": {