Download the PHP package kylewlawrence/infinity-laravel without Composer

On this page you can find all versions of the php package kylewlawrence/infinity-laravel. 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 infinity-laravel

Laravel Infinity

This package provides integration with the Infinity API. It supports creating boards, retrieving and updating items, deleting references, etc.

The package simply provides a Infinity facade that acts as a wrapper to the kylewlawrence/infinity-api-client-php package.

NB: Currently only supports bearer token-based authentication.

Installation

You can install this package via Composer using:

If you want to make use of the facade you must install it as well.

Configuration

To publish the config file to app/config/infinity-laravel.php run:

Set your configuration using environment variables, either in your .env file or on your server's control panel:

The API access token. You can create one at: https://app.startinfinity.com/profile/developer/tokens

This package does not yet support OAuth.

Set this to null or log to prevent calling the Infinity API directly from your environment.

Contributing

If you have any questions/problems/request with the SDK (the InfinityService class), please go to the Infinity PHP SDK repository with those requests. Pull Requests for the Laravel wrapper are always welcome here. I'll catch-up and develop the contribution guidelines soon. For the meantime, just open and issue or create a pull request.

Usage

Facade

The Infinity facade acts as a wrapper for an instance of the Infinity\Api\HttpClient class. Any methods available on this class (documentation here) are available through the facade. for example:

Dependency injection

If you'd prefer not to use the facade, you can skip adding the alias to config/app.php and instead inject KyleWLawrence\Infinity\Services\InfinityService into your class. You can then use all of the same methods on this object as you would on the facade.

This package is available under the MIT license.


All versions of infinity-laravel with dependencies

PHP Build Version
Package Version
No informations.
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 kylewlawrence/infinity-laravel contains the following files

Loading the files please wait ....