Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fourlabsldn/gmaildoctrinebundle
Doctrine Implementation of fourlabsldn/GmailBundle
https://github.com/fourlabsldn/gmaildoctrinebundle
Last synced: about 1 month ago
JSON representation
Doctrine Implementation of fourlabsldn/GmailBundle
- Host: GitHub
- URL: https://github.com/fourlabsldn/gmaildoctrinebundle
- Owner: fourlabsldn
- License: mit
- Created: 2016-10-07T15:45:00.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-23T15:37:43.000Z (over 7 years ago)
- Last Synced: 2024-09-30T17:22:20.954Z (about 2 months ago)
- Language: PHP
- Size: 102 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FL\GmailDoctrineBundle
GmailDoctrineBundle provides you a Doctrine implementation of [GmailBundle](https://github.com/fourlabsldn/GmailBundle).
[![StyleCI](https://styleci.io/repos/70260536/shield?branch=master)](https://styleci.io/repos/70260536)
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/3ed528cf-1d9b-4241-b91a-90eba601f5d4/mini.png)](https://insight.sensiolabs.com/projects/3ed528cf-1d9b-4241-b91a-90eba601f5d4)## Installation
```bash
$ composer require fourlabs/gmail-doctrine-bundle
```## Configuration
```
// app/config/config.yml
fl_gmail_doctrine:
sync_setting_class: TriprHqBundle\Entity\GmailSyncSetting
```## Setup
- Create doctrine entities in your entities folder e.g. `AppBundle\Entity`.
- These entities must extend all the MappedSuperClasses in this bundle's `Entity` folder.
- Make sure you use the provided repositories (from the entity folder). Or extend the repositories.```php