tp/phpqatools-edition

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (v2.1.4) of this package.

The "Symfony PHP-QA-Tools Edition" distribution

v2.1.4 2012-12-02 11:27 UTC

This package is not auto-updated.

Last update: 2019-02-20 17:19:34 UTC


README

Build Status

Welcome to the Symfony PHP-QA-Tools Edition - a fully-functional Symfony2 application that you can use as the skeleton for your new applications. This edition includes all features from the Symfony Standard Edition

  1. Overview

This Symfony2 edition comes packed with a large set of tools that you need for measuring the quality of your PHP code.

What's inside:

  • Of course everything that the standard edition provides

  • PHPUnit (incl. Selenium extension and php-invoker)

  • PDepend

  • PHP_CodeSniffer

  • PHP_CodeBrowser

  • PHP Mess Detector (including a phpmd.xml default config)

  • vfsStream (for abstracting filesystem access in tests)

  • Behat with Mink (Symfony2 extension, incl. BrowserKit & Selenium2 driver). Some example Behat Feature Scenario in the AcmeDemoBundle to get you started.

  • PHPLOC

  • PHPCPD (Currently broken due to package problems)

  • phpDocumentor2 (incl. various templates)

  • DoctrineFixturesBundle

  • LiipFunctionalTestBundle

  • ANT build file with a collection of useful build tasks

  • Jenkins project template (See it in action here)

  1. Prerequisites

The following PHP extensions need to be installed before you start:

  • php5-xsl

  • php5-intl

  • XDebug (for PHPUnit CodeCoverage)

  1. Installing the PHP-QA-Tools Edition

As Symfony uses Composer to manage its dependencies, the recommended way to create a new project is to use it.

If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:

curl -s https://getcomposer.org/installer | php

Then, use the create-project command to generate a new Symfony application:

php composer.phar create-project tp/phpqatools-edition path/to/install 2.1.x-dev

Composer will install Symfony and all its dependencies under the path/to/install directory.

Enjoy!