Download the PHP package t14/open-platform-php without Composer

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

Master Build Status Dev Build Status

Guardian Open Platform PHP Client

This is a PHP based client library that aims to provide an easy to use option for consuming The Guardian NewsPapers Open Platform API.

Before you get started

Before you get started you need to get an api key which you can obtain here

Installation

Using composer composer require t14/open-platform-php Create a config.yml file like the one below and add your api key.

Basic Usage

Edit the config.yml file and replace the api key with your own. You can choose to use a different YAML config file (see the config section below)

The getContent() returns a Guzzle client object making it possible to chain a different method other than getBody() See Guzzle documentation for more information

The searchQuery('my free text search') method allows you to add a free text search to your query. You also have the option to specify filters and use different endpoints.

Endpoints

You can query a different endpoint by passing the name of the endpoint as a parameter to the endpoint('nameOfEndpoint') method. For example to query the sections endpoint you could do the following

Filters

You can chain the filter method to the endpoint method and then to its self allowing you to set multiple filters. Each endpoint supports certain filters and an exception will be thrown if you try to use an incompatible filter to to check which filters are supported by which endpoint you can use the content explorer

The filter method takes a query as its first parameter and the name of the filter you want to use as its second parameter. For example if you would like to use the 'search' endpoint and filter your results to only show a single page, ordered by the most recent from the 'politics' section you could do the following;

Useful resources

This library is largely based on the Open Platform content explorer. You can use it to help you find out which filters are compatible with which endpoints, see what kind of results your queries return and more. open-platform.theguardian.com

Contributing

Please feel free to fork this repo and open a pull request.


All versions of open-platform-php with dependencies

PHP Build Version
Package Version
Requires guzzlehttp/guzzle Version 4.*
symfony/yaml Version 2.6.7
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 t14/open-platform-php contains the following files

Loading the files please wait ....