All Projects → djoos → Symfony Coding Standard

djoos / Symfony Coding Standard

Licence: mit
Development repository for the Symfony coding standard

Projects that are alternatives of or similar to Symfony Coding Standard

Mo4 Coding Standard
MO4 Coding Standard Rules for Codesniffer based on Symfony Coding Standards.
Stars: ✭ 15 (-96.06%)
Mutual labels:  php-codesniffer, symfony
Symplify
Do you use Symfony, Coding Standards, maintain PHP packages, automate monorepo, generate static website and are you lazy? You'll love the candies you find here! :)
Stars: ✭ 430 (+12.86%)
Mutual labels:  php-codesniffer, symfony
Kunstmaanbundlescms
An advanced yet user-friendly content management system, based on the full stack Symfony framework combined with a whole host of community bundles. It provides a full featured, multi-language CMS system with an innovative page and form assembling process, versioning, workflow, translation and media managers and much more.
Stars: ✭ 346 (-9.19%)
Mutual labels:  symfony
Polyfill Ctype
This component provides a partial, native PHP implementation for the Ctype extension.
Stars: ✭ 3,774 (+890.55%)
Mutual labels:  symfony
Lexikformfilterbundle
This Symfony bundle aim to provide classes to build some form filters and then build a doctrine query from this form filter.
Stars: ✭ 360 (-5.51%)
Mutual labels:  symfony
Doctrinemigrationsbundle
Symfony integration for the doctrine/migrations library
Stars: ✭ 3,782 (+892.65%)
Mutual labels:  symfony
Sonatablockbundle
Symfony SonataBlockBundle
Stars: ✭ 368 (-3.41%)
Mutual labels:  symfony
Weeshop
优雅易用的微信小程序商城,PHP商城。 基于Laravel的基因,来自Symfony的底层技术,来自Drupal Commerce的核心技术,由Drupal中国开源社区维护。QQ群:714023327
Stars: ✭ 337 (-11.55%)
Mutual labels:  symfony
Symfonyextension
🎼 Extension integrating Behat with Symfony.
Stars: ✭ 376 (-1.31%)
Mutual labels:  symfony
Phpstan Symfony
Symfony extension for PHPStan
Stars: ✭ 360 (-5.51%)
Mutual labels:  symfony
Graphqlite
Use PHP Annotations to declare your GraphQL API
Stars: ✭ 370 (-2.89%)
Mutual labels:  symfony
Stacker
Stacker - The environment for local web development, ready for use.
Stars: ✭ 356 (-6.56%)
Mutual labels:  symfony
Symfony Installer
The Symfony Installer
Stars: ✭ 347 (-8.92%)
Mutual labels:  symfony
Cmf Sandbox
Base project for trying CMF components integration
Stars: ✭ 368 (-3.41%)
Mutual labels:  symfony
Flex
Composer plugin for Symfony
Stars: ✭ 3,731 (+879.27%)
Mutual labels:  symfony
Silex
[DEPRECATED -- Use Symfony instead] The PHP micro-framework based on the Symfony Components
Stars: ✭ 3,646 (+856.96%)
Mutual labels:  symfony
Doctrinemongodbbundle
Integrates Doctrine MongoDB ODM with Symfony
Stars: ✭ 342 (-10.24%)
Mutual labels:  symfony
Notifier
Sends notifications via one or more channels (email, SMS, ...).
Stars: ✭ 346 (-9.19%)
Mutual labels:  symfony
Awesome Symfony
A collection of useful Symfony snippets.
Stars: ✭ 360 (-5.51%)
Mutual labels:  symfony
Schema Generator
PHP Model Scaffolding from Schema.org and other RDF vocabularies
Stars: ✭ 379 (-0.52%)
Mutual labels:  symfony

Build Status

Symfony PHP CodeSniffer Coding Standard

A coding standard to check against the Symfony coding standards, originally shamelessly copied from the -disappeared- opensky/Symfony2-coding-standard repository.

Installation

Composer

This standard can be installed with the Composer dependency manager.

  1. Install Composer

  2. Install the coding standard as a dependency of your project

     composer require --dev escapestudios/symfony2-coding-standard:3.x-dev
    
  3. Add the coding standard to the PHP_CodeSniffer install path

     vendor/bin/phpcs --config-set installed_paths vendor/escapestudios/symfony2-coding-standard
    
  4. Check the installed coding standards for "Symfony"

     vendor/bin/phpcs -i
    
  5. Done!

     vendor/bin/phpcs /path/to/code
    

Stand-alone

  1. Install PHP_CodeSniffer

  2. Checkout this repository

     git clone git://github.com/djoos/Symfony2-coding-standard.git
    
  3. Add the coding standard to the PHP_CodeSniffer install path

     phpcs --config-set installed_paths /path/to/Symfony2-coding-standard
    

    Or copy/symlink this repository's "Symfony"-folder inside the phpcs Standards directory

  4. Check the installed coding standards for "Symfony"

     phpcs -i
    
  5. Done!

     phpcs /path/to/code
    
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].