aeyoll / symfony-php-spec-generator-bundle
Installs: 67
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 2
pkg:composer/aeyoll/symfony-php-spec-generator-bundle
Requires
- php: >=5.3
- nikic/php-parser: ^1.4
This package is auto-updated.
Last update: 2025-10-06 00:48:27 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
...