Giter Club home page Giter Club logo

googleplayapi's Introduction

Google Play API

Installation

Add the following line to composer.json :

{
    "require": {
        "rashidlaasri/googleplayapi": "1.0"
    }
}

Run composer update.

Setup

Add ServiceProvider to the providers array in app/config/app.php.

'RachidLaasri\GooglePlayAPI\GooglePlayServiceProvider',

Add Facade :

'GooglePlay'  => 'RachidLaasri\GooglePlayAPI\Facades\GooglePlay',

Usage

$app = Googleplay::app('APP_URL');

echo $app->URL;
echo $app->title;
echo $app->published_at;
echo $app->price;
echo $app->required_version;
echo $app->icon;
echo $app->last_updated;
echo $app->installation_count;
echo $app->author_name;
echo $app->author_store_URL;
echo $app->author_website;
echo $app->author_email;
echo $app->HTML_description;
echo $app->plain_text_description;
echo $app->HTML_updates;
echo $app->plain_text_updates;
foreach($app->screenshots as $screenshot)
{
    echo $screenshot;
}

// Override default configuration :

Googleplay::config([
    'saveImages' => false,  // Save images to local.
    'imagesDir' => './images/', // Path to save images to.
    'tempDir' => './temp/', // Cache folder.
    'cacheTime' => 120 // Cache time per seconds.
]);

// You can chain methods :

Googleplay::config(['cacheTime' => 600])->app("APP_URL")->title;

Contribute

https://github.com/rachidlaasri/googleplayapi/pulls

googleplayapi's People

Contributors

rashidlaasri avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.