aeyoll / symfony-php-spec-generator-bundle
Package info
github.com/aeyoll/SymfonyPhpSpecGeneratorBundle
pkg:composer/aeyoll/symfony-php-spec-generator-bundle
Requires
- php: >=5.3
- nikic/php-parser: ^1.4
This package is auto-updated.
Last update: 2026-03-06 01:37:58 UTC
README
This bundle is a basic generator for PhpSpec, based on the Doctrine defined in your Symfony project
Installation
Begin by installing the package through Composer. Edit your project's composer.json file to require aeyoll/symfony-php-spec-generator-bundle.
"require": { "aeyoll/symfony-php-spec-generator-bundle": "dev-master" }
Next, use Composer to update your project from the the Terminal:
php composer.phar update
You can also use the require command from Composer:
composer require aeyoll/symfony-php-spec-generator-bundle
Once the package has been installed, you'll need to add the bundle to your kernel. Open your app/AppKernel.php configuration file, and add new Aeyoll\SymfonyPhpSpecGeneratorBundle\AeyollSymfonyPhpSpecGeneratorBundle(), to the bundle list.
Usage
...