Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aeyoll/symfonyphpspecgeneratorbundle
Basic PhpSpec generation for Doctrine entities
https://github.com/aeyoll/symfonyphpspecgeneratorbundle
Last synced: 11 days ago
JSON representation
Basic PhpSpec generation for Doctrine entities
- Host: GitHub
- URL: https://github.com/aeyoll/symfonyphpspecgeneratorbundle
- Owner: aeyoll
- License: mit
- Created: 2015-09-25T08:45:26.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-08-05T16:13:51.000Z (over 3 years ago)
- Last Synced: 2024-10-11T00:45:46.006Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SymfonyPhpSpecGeneratorBundle
[![Build Status](https://travis-ci.org/aeyoll/SymfonyPhpSpecGeneratorBundle.svg?branch=master)](https://travis-ci.org/aeyoll/SymfonyPhpSpecGeneratorBundle)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/aeyoll/SymfonyPhpSpecGeneratorBundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/aeyoll/SymfonyPhpSpecGeneratorBundle/?branch=master)
[![Test Coverage](https://codeclimate.com/github/aeyoll/SymfonyPhpSpecGeneratorBundle/badges/coverage.svg)](https://codeclimate.com/github/aeyoll/SymfonyPhpSpecGeneratorBundle/coverage)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`.
```json
"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
...