Files
chill-bundles/packages/ChillZimbraBundle/README.md

41 lines
1.2 KiB
Markdown

# Chill Zimbra Bundle
This bundle provides integration with Zimbra email server for Chill application.
## Source code
This bundle should be modified within [the chill-bundles repository](https://gitlab.com/Chill-Projet/chill-bundles).
The code at https://gitlab.com/Chill-Projet/chill-zimbra-connector is a mirror of this main
repository and is intended to serve packagist packages.
## Configuration
This bundle should be configured using a dsn scheme with a `zimbra+http` or `zimbra+https`
scheme.
```yaml
chill_calendar:
# remember to url-encode username and password
remote_calendar_dsn: zimbra+https://chill%40zimbra.example.com:password@zimbra.example.com
```
## Development
This bundles should be developed from within the chill-bundles repository.
During development, you must use an inline alias, or a branch alias to
be able to load the root package's master branch as a replacement for a version.
Example of composer.json for chill-project/chill-zimbra-bundle:
```json
{
"require": {
"chill-project/chill-bundles": "dev-master as v4.6.1",
"zimbra-api/soap-api": "^3.2.2",
"psr/http-client": "^1.0",
"nyholm/psr7": "^1.0"
}
}
```