Download the PHP package webmarketingroi/optimizely-php without Composer

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

optimizely-php

Build Status Code Coverage Latest Stable Version Total Downloads Latest Unstable Version Scrutinizer Code Quality

A PHP wrapper library for the Optimizely REST API v2.0 (https://developers.optimizely.com/rest/v2/), proudly created and open sourced by Optimizely Solutions Partner, Web Marketing ROI.

Installation

This library requires at least version 5.6 of PHP with the curl extension installed.

Installing with Composer:

php composer.phar require webmarketingroi/optimizely-php

The command above will install the latest stable version. Or, if you prefer a bleeding-edge version, install dev-master with the following command:

php composer.phar require webmarketingroi/optimizely-php dev-master

Usage

First, you need to create an instance of the OptimizelyApiClient class. You can do that using the following lines of code:

The first argument of the OptimizelyApiClient constructor should be your Optimizely API credentials in the form of an array, the second argument represents the API version (currently, only 'v2' is supported).

Note: For information on how to get OAuth 2.0 credentials or a personal token, please refer to Optimizely's documentation https://developers.optimizely.com/x/authentication/oauth/.

Working with Projects

Getting List of Projects

Use the following code to retrieve all Optimizely projects:

Adding New Project

To add a new project, use the following code:

or, you can use this (equivalent) code:

Updating Existing Project

Getting the List of Running Campaigns

Adding a New Campaign

More Code Examples

For additional code examples, please refer to the examples directory.

Running Unit Tests

This library uses PHPUnit for testing. To run unit tests, use the following command:

If you want to run integration tests against a real Optimizely account, rename tests/auth_credentials.json.dist to tests/auth_credentials.json and type your credentials in that file. Then, create the OPTIMIZELY_PHP_TEST_INTEGRATION environment variable as follows

export OPTIMIZELY_PHP_TEST_INTEGRATION=1

and then run unit tests.

Open source projects using optimizely-php


All versions of optimizely-php with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3
ext-curl Version *
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 webmarketingroi/optimizely-php contains the following files

Loading the files please wait ....