Download the PHP package spackleso/spackle-php without Composer

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

Spackle PHP Library

The Spackle PHP library provides optimized access to billing aware flags created on the Spackle platform.

Documentation

See the PHP API docs.

Setup

Install the Spackle library

To use the bindings use Composer's autoload:

Configure your environment

In order to use Spackle, you need to configure your secret key on the Spackle singleton. You can find your secret key in Spackle app settings page.

Usage

Pricing tables

Fetch a pricing table

Pricing table object

Entitlements

Fetch a customer

Spackle uses stripe ids as references to customer features.

Verify feature access

Fetch a feature limit

Examine a customer's subscriptions

A customer's current subscriptions are available on the subscriptions method. These are valid \Stripe\Subscription objects as defined in the Stripe PHP library.

Waiters

There is a brief delay between when an action takes place in Stripe and when it is reflected in Spackle. To account for this, Spackle provides a Waiters class with static methods that can be used to wait for a Stripe object to be updated and replicated.

  1. Wait for a customer to be created

  2. Wait for a subscription to be created

  3. Wait for a subscription to be updated

These will block until Spackle is updated with the latest information from Stripe or until a timeout occurs.

Usage in development environments

In production, Spackle requires a valid Stripe customer. However, that is not development environments where state needs to be controlled. As an alternative, you can use a file store to test your application with seed data.

Then configure the file store in your application:

Usage in testing environments

In production, Spackle requires a valid Stripe customer. However, that is not ideal in testing or some development environments. As an alternative, you can use an in-memory store to test your application with seed data.

Note: The in-memory store is not thread-safe and state will reset on each application restart.


All versions of spackle-php with dependencies

PHP Build Version
Package Version
Requires stripe/stripe-php Version ^10.12
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 spackleso/spackle-php contains the following files

Loading the files please wait ....