PHPackages                             rips/connector-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. rips/connector-bundle

ActiveSymfony-bundle[API Development](/categories/api)

rips/connector-bundle
=====================

RIPS API Connector bundle for Symfony

3.4.0(6y ago)43.2k1[2 PRs](https://github.com/rips/php-connector-bundle/pulls)BSD-3-ClausePHP

Since Oct 19Pushed 3y ago4 watchersCompare

[ Source](https://github.com/rips/php-connector-bundle)[ Packagist](https://packagist.org/packages/rips/connector-bundle)[ RSS](/packages/rips-connector-bundle/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (1)Versions (33)Used By (0)

RIPS Connector Bundle
---------------------

[](#rips-connector-bundle)

A Symfony bundle wrapper around the [RIPS Connector package](https://github.com/rips/php-connector). This library provides easy access to RIPS and all of its features.

Installation
============

[](#installation)

Use composer to include the package:

```
composer require rips/connector-bundle:~3.4

```

OR add the following to composer.json and run `composer update`.

```
"rips/connector-bundle": "~3.4"

```

This library is intended for Symfony applications but it can also be used on its own. If used with Symfony, the installation of the connector bundle should automatically create an entry in the `bundles.php` file that looks like this:

```
return [
    // ...
    RIPS\ConnectorBundle\RIPSConnectorBundle::class => ['all' => true],
    // ...
];

```

Additionally, you have to add config settings in `app/config/rips_connector.yaml` (see [rips/connector readme](https://github.com/rips/php-connector#user-content-configoptions) for a list of config options). If you are not using Symfony you can specify the options through the constructor of `APIService`.

```
rips_connector:
    base_uri: 'http://localhost:8080'
    email: 'email'
    password: 'password'

```

Usage
=====

[](#usage)

A basic example for a console application that gets a list of all users without Symfony looks like this:

```
