Skip to content

added security.txt to public webdir #330

added security.txt to public webdir

added security.txt to public webdir #330

Workflow file for this run

# static code analyse with phpstan
name: PHPStan
on:
push:
branches:
- main
- dev
jobs:
phpstan:
name: PHPStan analyse
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
# setup php interpreter
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
extensions: intl, pdo_mysql, gd
# install backend dependencies with composer
- name: Install backend dependencies
run: composer install
# run code analyse with phpstan
- name: Run PHPStan
run: ./vendor/bin/phpstan analyse --configuration phpstan.neon