2017 © Pedro Peláez
 

library gcloud

Google Cloud Client Library that doesn't conflict against google/apiclient

image

iadj/gcloud

Google Cloud Client Library that doesn't conflict against google/apiclient

  • Wednesday, July 5, 2017
  • by iadj
  • Repository
  • 1 Watchers
  • 0 Stars
  • 12 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 161 Forks
  • 0 Open issues
  • 44 Versions
  • 0 % Grown

The README.md

Google Cloud PHP Client

Idiomatic PHP client for Google Cloud Platform services., (*1)

Travis Build Status codecov, (*2)

This client supports the following Google Cloud Platform services at a General Availability quality level: * Google Stackdriver Logging (GA) * Google Cloud Datastore (GA) * Google Cloud Storage (GA) * Google Cloud Translation (GA), (*3)

This client supports the following Google Cloud Platform services at a Beta quality level:, (*4)

This client supports the following Google Cloud Platform services at an Alpha quality level: * Cloud Spanner (Alpha) * Google Cloud Speech (Alpha) * Google Cloud Video Intelligence (Alpha) * Google Stackdriver Trace (Alpha), (*5)

If you need support for other Google APIs, please check out the Google APIs Client Library for PHP., (*6)

Quick Start

$ composer require google/cloud

Google Stackdriver Logging (GA)

Preview

require 'vendor/autoload.php';

use Google\Cloud\Logging\LoggingClient;

$logging = new LoggingClient([
    'projectId' => 'my_project'
]);

// Get a logger instance.
$logger = $logging->logger('my_log');

// Write a log entry.
$logger->write('my message');

// List log entries from a specific log.
$entries = $logging->entries([
    'filter' => 'logName = projects/my_project/logs/my_log'
]);

foreach ($entries as $entry) {
    echo $entry->info()['textPayload'] . "\n";
}

google/cloud-logging

Google Stackdriver Logging can be installed separately by requiring the google/cloud-logging composer package:, (*7)

$ require google/cloud-logging

Google Cloud Datastore (GA)

Preview

require 'vendor/autoload.php';

use Google\Cloud\Datastore\DatastoreClient;

$datastore = new DatastoreClient([
    'projectId' => 'my_project'
]);

// Create an entity
$bob = $datastore->entity('Person');
$bob['firstName'] = 'Bob';
$bob['email'] = 'bob@example.com';
$datastore->insert($bob);

// Update the entity
$bob['email'] = 'bobV2@example.com';
$datastore->update($bob);

// If you know the ID of the entity, you can look it up
$key = $datastore->key('Person', '12345328897844');
$entity = $datastore->lookup($key);

google/cloud-datastore

Google Cloud Datastore can be installed separately by requiring the google/cloud-datastore composer package:, (*8)

$ require google/cloud-datastore

Google Cloud Storage (GA)

Preview

require 'vendor/autoload.php';

use Google\Cloud\Storage\StorageClient;

$storage = new StorageClient([
    'projectId' => 'my_project'
]);

$bucket = $storage->bucket('my_bucket');

// Upload a file to the bucket.
$bucket->upload(
    fopen('/data/file.txt', 'r')
);

// Using Predefined ACLs to manage object permissions, you may
// upload a file and give read access to anyone with the URL. 
$bucket->upload(
    fopen('/data/file.txt', 'r'),
    [
        'predefinedAcl' => 'publicRead'
    ]
);

// Download and store an object from the bucket locally.
$object = $bucket->object('file_backup.txt');
$object->downloadToFile('/data/file_backup.txt');

Stream Wrapper

require 'vendor/autoload.php';

use Google\Cloud\Storage\StorageClient;

$storage = new StorageClient([
    'projectId' => 'my_project'
]);
$storage->registerStreamWrapper();

$contents = file_get_contents('gs://my_bucket/file_backup.txt');

google/cloud-storage

Google Cloud Storage can be installed separately by requiring the google/cloud-storage composer package:, (*9)

$ require google/cloud-storage

Google Cloud Translation (GA)

Preview

require 'vendor/autoload.php';

use Google\Cloud\Translate\TranslateClient;

$translate = new TranslateClient([
    'key' => 'your_key'
]);

// Translate text from english to french.
$result = $translate->translate('Hello world!', [
    'target' => 'fr'
]);

echo $result['text'] . "\n";

// Detect the language of a string.
$result = $translate->detectLanguage('Greetings from Michigan!');

echo $result['languageCode'] . "\n";

// Get the languages supported for translation specifically for your target language.
$languages = $translate->localizedLanguages([
    'target' => 'en'
]);

foreach ($languages as $language) {
    echo $language['name'] . "\n";
    echo $language['code'] . "\n";
}

// Get all languages supported for translation.
$languages = $translate->languages();

foreach ($languages as $language) {
    echo $language . "\n";
}

google/cloud-translate

Google Cloud Translation can be installed separately by requiring the google/cloud-translate composer package:, (*10)

$ require google/cloud-translate

Google BigQuery (Beta)

Preview

require 'vendor/autoload.php';

use Google\Cloud\BigQuery\BigQueryClient;

$bigQuery = new BigQueryClient([
    'projectId' => 'my_project'
]);

// Get an instance of a previously created table.
$dataset = $bigQuery->dataset('my_dataset');
$table = $dataset->table('my_table');

// Begin a job to import data from a CSV file into the table.
$job = $table->load(
    fopen('/data/my_data.csv', 'r')
);

// Run a query and inspect the results.
$queryResults = $bigQuery->runQuery('SELECT * FROM [my_project:my_dataset.my_table]');

foreach ($queryResults->rows() as $row) {
    print_r($row);
}

google/cloud-bigquery

Google BigQuery can be installed separately by requiring the google/cloud-bigquery composer package:, (*11)

$ require google/cloud-bigquery

Google Cloud Natural Language (Beta)

Preview

require 'vendor/autoload.php';

use Google\Cloud\Language\LanguageClient;

$language = new LanguageClient([
    'projectId' => 'my_project'
]);

// Analyze a sentence.
$annotation = $language->annotateText('Greetings from Michigan!');

// Check the sentiment.
if ($annotation->sentiment() > 0) {
    echo "This is a positive message.\n";
}

// Detect entities.
$entities = $annotation->entitiesByType('LOCATION');

foreach ($entities as $entity) {
    echo $entity['name'] . "\n";
}

// Parse the syntax.
$tokens = $annotation->tokensByTag('NOUN');

foreach ($tokens as $token) {
    echo $token['text']['content'] . "\n";
}

google/cloud-language

Google Cloud Natural Language can be installed separately by requiring the google/cloud-language composer package:, (*12)

$ require google/cloud-language

Google Cloud Pub/Sub (Beta)

Preview

require 'vendor/autoload.php';

use Google\Cloud\PubSub\PubSubClient;

$pubSub = new PubSubClient([
    'projectId' => 'my_project'
]);

// Get an instance of a previously created topic.
$topic = $pubSub->topic('my_topic');

// Publish a message to the topic.
$topic->publish([
    'data' => 'My new message.',
    'attributes' => [
        'location' => 'Detroit'
    ]
]);

// Get an instance of a previously created subscription.
$subscription = $pubSub->subscription('my_subscription');

// Pull all available messages.
$messages = $subscription->pull();

foreach ($messages as $message) {
    echo $message->data() . "\n";
    echo $message->attribute('location');
}

google/cloud-pubsub

Google Cloud Pub/Sub can be installed separately by requiring the google/cloud-pubsub composer package:, (*13)

$ require google/cloud-pubsub

Google Cloud Vision (Beta)

Preview

require 'vendor/autoload.php';

use Google\Cloud\Vision\VisionClient;

$vision = new VisionClient([
    'projectId' => 'my_project'
]);

// Annotate an image, detecting faces.
$image = $vision->image(
    fopen('/data/family_photo.jpg', 'r'),
    ['faces']
);

$annotation = $vision->annotate($image);

// Determine if the detected faces have headwear.
foreach ($annotation->faces() as $key => $face) {
    if ($face->hasHeadwear()) {
        echo "Face $key has headwear.\n";
    }
}

google/cloud-vision

Google Cloud Vision can be installed separately by requiring the google/cloud-vision composer package:, (*14)

$ require google/cloud-vision

Cloud Spanner (Alpha)

Preview

require 'vendor/autoload.php';

use Google\Cloud\Spanner\SpannerClient;

$spanner = new SpannerClient([
    'projectId' => 'my_project'
]);

$db = $spanner->connect('my-instance', 'my-database');

$userQuery = $db->execute('SELECT * FROM Users WHERE id = @id', [
    'parameters' => [
        'id' => $userId
    ]
]);

$user = $userQuery->rows()->current();

echo 'Hello ' . $user['firstName'];

google/cloud-spanner

Cloud Spanner can be installed separately by requiring the google/cloud-spanner composer package:, (*15)

$ require google/cloud-spanner

Google Cloud Speech (Alpha)

Preview

require 'vendor/autoload.php';

use Google\Cloud\Speech\SpeechClient;

$speech = new SpeechClient([
    'projectId' => 'my_project',
    'languageCode' => 'en-US'
]);

// Recognize the speech in an audio file.
$results = $speech->recognize(
    fopen(__DIR__ . '/audio_sample.flac', 'r')
);

foreach ($results as $result) {
    echo $result->topAlternative()['transcript'] . "\n";
}

google/cloud-speech

Google Cloud Speech can be installed separately by requiring the google/cloud-speech composer package:, (*16)

$ require google/cloud-speech

Google Cloud Video Intelligence (Alpha)

Preview

require __DIR__ . '/vendor/autoload.php';

use Google\Cloud\VideoIntelligence\V1beta1\VideoIntelligenceServiceClient;
use google\cloud\videointelligence\v1beta1\Feature;

$client = new VideoIntelligenceServiceClient();

$inputUri = "gs://example-bucket/example-video.mp4";
$features = [
    Feature::LABEL_DETECTION,
];
$operationResponse = $client->annotateVideo($inputUri, $features);
$operationResponse->pollUntilComplete();
if ($operationResponse->operationSucceeded()) {
    $results = $operationResponse->getResult();
    foreach ($results->getAnnotationResultsList() as $result) {
        foreach ($result->getLabelAnnotationsList() as $labelAnnotation) {
            echo "Label: " . $labelAnnotation->getDescription() . "\n";
        }
    }
} else {
    $error = $operationResponse->getError();
    echo "error: " . $error->getMessage() . "\n";
}

google/cloud-videointelligence

Cloud Video Intelligence can be installed separately by requiring the google/cloud-videointelligence composer package:, (*17)

$ require google/cloud-videointelligence

Google Stackdriver Trace (Alpha)

Preview

require 'vendor/autoload.php';

use Google\Cloud\Trace\TraceClient;

$traceClient = new TraceClient([
    'projectId' => 'my_project'
]);

// Create a Trace
$trace = $traceClient->trace();
$span = $trace->span([
    'name' => 'main'
]);
$span->setStart();
$span->setEnd();

$trace->setSpans([$span]);
$traceClient->insert($trace);

// List recent Traces
foreach($traceClient->traces() as $trace) {
    var_dump($trace->traceId());
}

google/cloud-trace

Stackdriver Trace can be installed separately by requiring the google/cloud-trace composer package:, (*18)

$ require google/cloud-trace

Caching Access Tokens

By default the library will use a simple in-memory caching implementation, however it is possible to override this behavior by passing a PSR-6 caching implementation in to the desired client., (*19)

The following example takes advantage of Symfony's Cache Component., (*20)

require 'vendor/autoload.php';

use Google\Cloud\Storage\StorageClient;
use Symfony\Component\Cache\Adapter\ArrayAdapter;

// Please take the proper precautions when storing your access tokens in a cache no matter the implementation.
$cache = new ArrayAdapter();

$storage = new StorageClient([
    'authCache' => $cache
]);

Versioning

This library follows Semantic Versioning., (*21)

Please note it is currently under active development. Any release versioned 0.x.y is subject to backwards incompatible changes at any time., (*22)

GA: Libraries defined at a GA quality level are stable, and will not introduce backwards-incompatible changes in any minor or patch releases. We will address issues and requests with the highest priority., (*23)

Beta: Libraries defined at a Beta quality level are expected to be mostly stable and we're working towards their release candidate. We will address issues and requests with a higher priority., (*24)

Alpha: Libraries defined at an Alpha quality level are still a work-in-progress and are more likely to get backwards-incompatible updates., (*25)

Contributing

Contributions to this library are always welcome and highly encouraged., (*26)

See CONTRIBUTING for more information on how to get started., (*27)

License

Apache 2.0 - See LICENSE for more information., (*28)

The Versions

05/07 2017

dev-master

9999999-dev http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library that doesn't conflict against google/apiclient

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub spanner

01/07 2017

v0.33.0

0.33.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub spanner

30/06 2017

dev-batch

dev-batch http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub spanner

01/06 2017

v0.32.1

0.32.1.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub spanner

25/05 2017

v0.32.0

0.32.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub spanner

22/05 2017

v0.31.1

0.31.1.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub spanner

22/05 2017

v0.31.0

0.31.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub spanner

19/05 2017

v0.30.1

0.30.1.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub spanner

18/05 2017

v0.30.0

0.30.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub spanner

18/05 2017

v0.29.0

0.29.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

25/04 2017

v0.28.0

0.28.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

14/04 2017

v0.27.0

0.27.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

07/04 2017

v0.26.0

0.26.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

language cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

05/04 2017

v0.25.1

0.25.1.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

31/03 2017

v0.25.0

0.25.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

10/03 2017

v0.24.0

0.24.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

08/03 2017

v0.23.0

0.23.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

03/03 2017

v0.22.0

0.22.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

23/02 2017

v0.21.1

0.21.1.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

22/02 2017

v0.21.0

0.21.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

10/02 2017

v0.20.2

0.20.2.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translation translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

28/12 2016

v0.20.1

0.20.1.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

09/12 2016

v0.20.0

0.20.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

29/11 2016

v0.13.2

0.13.2.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

28/11 2016

v0.13.1

0.13.1.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

14/11 2016

v0.13.0

0.13.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

11/11 2016

v0.12.0

0.12.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

13/10 2016

v0.11.1

0.11.1.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

13/10 2016

v0.11.0

0.11.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

11/10 2016

v0.10.2

0.10.2.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

08/10 2016

v0.10.1

0.10.1.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

05/10 2016

v0.10.0

0.10.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

26/09 2016

v0.9.0

0.9.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

09/09 2016

v0.8.0

0.8.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud datastore google api bigquery natural language speech vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

05/09 2016

v0.7.1

0.7.1.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud google api bigquery natural language vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

01/09 2016

v0.7.0

0.7.0.0 http://github.com/GoogleCloudPlatform/google-cloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google translate storage pubsub gcs google cloud google api bigquery natural language vision google apis client google api client google apis google cloud platform big query stackdriver logging pub sub

09/08 2016

v0.6.0

0.6.0.0 http://github.com/GoogleCloudPlatform/gcloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google google cloud google api google apis client google api client google apis google cloud platform

05/08 2016

v0.5.1

0.5.1.0 http://github.com/GoogleCloudPlatform/gcloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google google cloud google api google apis client google api client google apis google cloud platform

27/07 2016

v0.5.0

0.5.0.0 http://github.com/GoogleCloudPlatform/gcloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google google cloud google api google apis client google api client google apis google cloud platform

19/07 2016

v0.4.1

0.4.1.0 http://github.com/GoogleCloudPlatform/gcloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google google cloud google api google apis client google api client google apis google cloud platform

06/07 2016

v0.4.0

0.4.0.0 http://github.com/GoogleCloudPlatform/gcloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google google cloud google api google apis client google api client google apis google cloud platform

02/06 2016

v0.3.0

0.3.0.0 http://github.com/GoogleCloudPlatform/gcloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by John Pedrie
by Dave Supplee

cloud google google cloud google api google apis client google api client google apis google cloud platform

03/04 2016

v0.2.0

0.2.0.0 http://github.com/GoogleCloudPlatform/gcloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Dave Supplee

cloud google google cloud google api google apis client google api client google apis google cloud platform

29/03 2016

v0.1.0

0.1.0.0 http://github.com/GoogleCloudPlatform/gcloud-php

Google Cloud Client Library

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Dave Supplee

cloud google google cloud google api google apis client google api client google apis google cloud platform