Conversation
|
メモ: 同じ問題にあたって psr4 の check 方法について調べていました。 composer 2.0 系でサポートされた https://getcomposer.org/doc/03-cli.md#dump-autoload-dumpautoload github action 例: name: COMPOSER-DUMP-AUTOLOAD-STRICT-PSR
on:
push:
branches:
- main
pull_request:
types: [synchronize, opened, reopened]
paths:
- '**/*.php'
jobs:
check-psr4-by-composer-dump-autoload-strict-psr:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
uses: docker://composer:2.4.1
env:
COMPOSER: composer.json
COMPOSER_VENDOR_DIR: vendor
with:
entrypoint: /usr/bin/composer
args: install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
path: ${{ github.workspace }}
- name: composer psr4 validate
uses: docker://composer:2.4.1
env:
COMPOSER: composer.json
COMPOSER_VENDOR_DIR: vendor
with:
entrypoint: /usr/bin/composer
args: dump-autoload --strict-psr
path: ${{ github.workspace }} |
|
Is there any chance that this is going to get merged? Or has this repository been abandoned? |
|
I tried to port it But so far it doesn't seem to work for me at all.. Reports nothing on actual issues. |
12 tasks
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
背景
php8.2で
${var}による文字列への埋め込みが非推奨になったphp8.2環境で、phpcs-psr4-sniffをインストールしphpcsを実行した結果