marcusvy/symfony-starter-kit

Marcus Vinicius Symfony Starter Kit

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

Type:project

pkg:composer/marcusvy/symfony-starter-kit

v1.0.0 2025-11-23 13:07 UTC

This package is not auto-updated.

Last update: 2025-11-23 18:45:49 UTC


README

A default symfony skeleton with QA Tools

Requirements

Getting Start

Setup project

# Setup and download initial tools
$ composer setup
# [Optional: Create a local Certificate Authority for serving HTTPS]
$ composer dev:ca

Start server

# Only start the server
$ composer dev:start
# Stop the server
$ composer dev:stop
# Server status
$ composer dev:status

If you want start both server and live reload use:

# Start both Symfony and BrowserSync servers
$ composer dev:live

Stop server

Quality Assurance Tools

  • BiomeJS
  • PHP CS Fixer
  • PHPStan
  • Rector
  • Twig CS Fixer

Installed Bundles

Composer Scripts

Setup

  • setup : Setup application with default tools.
  • setup:tailwind : Setup Tailwind CSS and download binary.",
  • setup:biome : Setup BiomeJS and download binary.",

Dev

  • dev:start : Start development server.
  • dev:stop : Stop development server.
  • dev:status : Check server status.
  • dev:ca : Create a local Certificate Authority for serving HTTPS.
  • dev:browsersync : Start local BrowserSync tool with proxy for live reloading.
  • dev:live : Start local development server and BrowserSync tool with proxy for live reloading.

    QA

  • qa:fix:php : Fixes your code to follow the standards with PHP Coding Standards Fixer (PHP CS Fixer).
  • qa:fix:twig : Fixes your code to follow the standards with Symfony Twig Coding Standards Fixer (Twig CS Fixer);
  • qa:fix:rector : Upgrades and refactors the PHP code of symfony with rector.
  • qa:fix:asset : Apply formatter, linter and import sorting to assets folder.
  • qa:check:rector : Check changes with Rector of upgrades and refactors.
  • qa:check:phpstan : PHPStan finds bugs in your code without writing tests.
  • qa:check:asset : Runs formatter, linter and import sorting to assets folder