Initial commit for new repo
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 1m4s

This commit is contained in:
dhanabalan
2025-12-16 17:05:04 +05:30
commit 3f0d529640
862 changed files with 141157 additions and 0 deletions

32
.github/workflows/larastan.yaml vendored Normal file
View File

@@ -0,0 +1,32 @@
# Filenme: .github/workflows/larastan.yaml
name: Laravel Larastan
on:
pull_request:
workflow_dispatch:
jobs:
larastan:
runs-on: ubuntu-latest
steps:
# Reinstall system libraries to ensure compatibility
- name: Ensure system libraries are up-to-date
run: |
sudo apt-get update
sudo apt-get install --reinstall --yes git libc6
- uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.4"
- name: Install dependencies
run: composer install
# Run larastan code quality checks
- name: Run Larastan
run: vendor/bin/phpstan analyse --no-progress --memory-limit=2G