From fe2487d15f259e80f23b4f2ab996d85c167319ab Mon Sep 17 00:00:00 2001 From: thejmitchener Date: Thu, 13 Jun 2024 12:26:54 -0400 Subject: [PATCH] Refactored the package description in composer.json to be more concise and accurate. Renamed the ViteCommand class to InstallCommand for better clarity and consistency. --- .github/workflows/phpstan.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/phpstan.yml diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml deleted file mode 100644 index da9a739..0000000 --- a/.github/workflows/phpstan.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: PHPStan - -on: - push: - paths: - - '**.php' - - 'phpstan.neon.dist' - - '.github/workflows/phpstan.yml' - -jobs: - phpstan: - name: phpstan - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: '8.2' - coverage: none - - - name: Install composer dependencies - uses: ramsey/composer-install@v3 - - - name: Run PHPStan - run: ./vendor/bin/phpstan tests --error-format=github