Skip to content

Added @param PluginApplicationInterface<BasePlugin> PHPDoc #2

Added @param PluginApplicationInterface<BasePlugin> PHPDoc

Added @param PluginApplicationInterface<BasePlugin> PHPDoc #2

Workflow file for this run

name: PHP CI
on:
push:
branches:
- main
pull_request:
jobs:
php-tests:
name: PHP ${{ matrix.php }} / Cake ${{ matrix.cake }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- php: '7.4'
cake: '^4.4'
- php: '8.1'
cake: '^5.0'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
cache: composer
- name: Install Perfbase
run: bash -c "$(curl -fsSL https://cdn.perfbase.com/install.sh)"
- name: Pin CakePHP version
run: composer require --dev --no-update cakephp/cakephp:${{ matrix.cake }}
- name: Install dependencies
run: composer update --prefer-dist --no-progress
- name: Validate Composer metadata
run: composer validate --strict
- name: Run PHPStan
run: composer run phpstan
- name: Run PHPUnit
run: composer run test