generated from yii2-extensions/template
-
-
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
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
40c0ea9
feat(coding-standard): Added shared configuration files under `config…
terabytesoftw 7cda3bb
style: Refactor code formatting for consistency in configuration files.
terabytesoftw 62bcb45
style: Update headings and table formatting for consistency in docume…
terabytesoftw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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\\": "./" | ||
| } | ||
| }, | ||
| "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" | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.