Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
feat(coding-standard): Added shared configuration files under config/ for Composer-based reuse.#1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
40c0ea97cda3bb62bcb45File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,5 @@ | ||
| # Changelog | ||
| ## 0.1.0 January 24, 2026 | ||
| - Enh #1 Added shared configuration files under `config/` for Composer-based reuse (@terabytesoftw) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,68 +1,41 @@ | ||
| { | ||
| "name": "yii2/template", | ||
| "name": "php-forge/coding-standard", | ||
| "type": "library", | ||
| "description": "_____", | ||
| "description": "Coding standards for PHP projects.", | ||
| "keywords": [ | ||
| "_____" | ||
| "coding-standard", | ||
| "php", | ||
| "yii2" | ||
| ], | ||
| "license": "BSD-3-Clause", | ||
| "minimum-stability": "dev", | ||
| "prefer-stable": true, | ||
| "require": { | ||
| "php": ">=8.1", | ||
| "yiisoft/yii2": "^2.2" | ||
| }, | ||
| "require-dev": { | ||
| "infection/infection": "^0.27|^0.31", | ||
| "maglnet/composer-require-checker": "^4.1", | ||
| "phpstan/extension-installer": "^1.4", | ||
| "phpstan/phpstan-strict-rules": "^2.0.3", | ||
| "phpunit/phpunit": "^10.5", | ||
| "rector/rector": "^2.1", | ||
| "symplify/easy-coding-standard": "^13.0", | ||
| "yii2-extensions/phpstan": "^0.3" | ||
| "symplify/easy-coding-standard": "^13.0" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "yii\\template\\": "src" | ||
| } | ||
| }, | ||
| "autoload-dev": { | ||
| "psr-4": { | ||
| "yii\\template\\tests\\": "tests" | ||
| "PHPForge\\CodingStandard\\": "./" | ||
| } | ||
coderabbitai[bot] marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| }, | ||
| "extra": { | ||
| "branch-alias": { | ||
| "dev-main": "1.0.x-dev" | ||
| "dev-main": "0.2.x-dev" | ||
| } | ||
| }, | ||
| "config": { | ||
| "sort-packages": true, | ||
| "allow-plugins": { | ||
| "infection/extension-installer": true, | ||
| "phpstan/extension-installer": true, | ||
| "yiisoft/yii2-composer": true | ||
| } | ||
| "sort-packages": true | ||
| }, | ||
| "scripts": { | ||
| "check-dependencies": "./vendor/bin/composer-require-checker check", | ||
| "ecs": "./vendor/bin/ecs --fix", | ||
| "mutation": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100", | ||
| "mutation-static": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100 --static-analysis-tool=phpstan --static-analysis-tool-options='--memory-limit=-1'", | ||
| "rector": "./vendor/bin/rector process src", | ||
| "static": "./vendor/bin/phpstan --memory-limit=-1", | ||
| "sync-metadata": [ | ||
| "curl -fsSL -o .editorconfig https://raw.githubusercontent.com/yii2-extensions/template/main/.editorconfig", | ||
| "curl -fsSL -o .gitattributes https://raw.githubusercontent.com/yii2-extensions/template/main/.gitattributes", | ||
| "curl -fsSL -o .gitignore https://raw.githubusercontent.com/yii2-extensions/template/main/.gitignore", | ||
| "curl -fsSL -o .styleci.yml https://raw.githubusercontent.com/yii2-extensions/template/main/.styleci.yml", | ||
| "curl -fsSL -o ecs.php https://raw.githubusercontent.com/yii2-extensions/template/main/ecs.php", | ||
| "curl -fsSL -o infection.json5 https://raw.githubusercontent.com/yii2-extensions/template/main/infection.json5", | ||
| "curl -fsSL -o phpstan.neon https://raw.githubusercontent.com/yii2-extensions/template/main/phpstan.neon", | ||
| "curl -fsSL -o phpunit.xml.dist https://raw.githubusercontent.com/yii2-extensions/template/main/phpunit.xml.dist", | ||
| "curl -fsSL -o rector.php https://raw.githubusercontent.com/yii2-extensions/template/main/rector.php" | ||
| "curl -fsSL -o .styleci.yml https://raw.githubusercontent.com/yii2-extensions/template/main/.styleci.yml" | ||
| ], | ||
| "tests": "./vendor/bin/phpunit" | ||
| "rector": "./vendor/bin/rector process" | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.