Download the PHP package clusterpoint/laravel-clusterpoint without Composer

On this page you can find all versions of the php package clusterpoint/laravel-clusterpoint. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-clusterpoint

Clusterpoint 4.x PHP Client API - Laravel Package

Latest Stable Version Total Downloads Latest Unstable Version License

Official Documentation

Documentation for the API can be found on the Clusterpoint website.

Install

  1. Install the package.
    composer require clusterpoint/laravel-clusterpoint
  2. Register Service Provider in your config/app.php file.
    Clusterpoint\ClusterpointServiceProvider::class
  3. Publish config file.
    php artisan vendor:publish --provider="Clusterpoint\ClusterpointServiceProvider"
  4. Edit config – The main config file path is
    config/clusterpoint.php
    however we recommend to add your credentials to your .env file in laravel project root directory.

Usage examples

Client Usage Example

Here you can see standart Laravel Controller that uses our service.

Model Usage Example

First create your model in app folder:

Now you can use model inside the controller.

Route Model Binding Example

We will use model created above to show this example, first bind your model in app/Http/routes.php file like this:

Now if you pass the primary key value in your url like myweb.dev/examples/42 you can access the document already inside your controller like this.

Multiple connections Example

You can set multiple connections and use what you needed in the Model.

First add a connection setting array in the main config file config/clusterpoint.php. For example a connection named "test"

However we recommend you to add your credentials to your .env file in the laravel project root directory.

Now You can use the connection in Your Model:

Support, Feature Requests & Bug Reports

License

Clusterpoint 4.0 PHP Client API - Laravel Package is open-sourced software licensed under the MIT license


All versions of laravel-clusterpoint with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4
clusterpoint/php-client-api-v4 Version ^4.0.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package clusterpoint/laravel-clusterpoint contains the following files

Loading the files please wait ....