Git Product home page Git Product logo

crowdscore's Introduction

##Dependencies This package use Guzzle HTTP client library that you needs to install in your Laravel instance. To perform this add follow line in require section in your composer.json

"guzzlehttp/guzzle": "~6.0",

Crowdscore live score API client

Laravel package to connect and use Crowdscore API for football live score data

#Install Add follow line into "require" section in your composer.json:

"developerdynamo/crowdscore": "1.*"

Update composer with command:

"composer update"

#Configure Laravel 5 Like all providers, put this follow lines in your config/app.php

'providers' => [
	...
	DeveloperDynamo\Crowdscore\CrowdscoreProvider::class,
],

Add facades in aliases array

'aliases' => [
	...
	'Crowdscore' => DeveloperDynamo\Crowdscore\Facades\Crowdscore::class,
],

#Publish configuration Finally you need to generate a configuration file for this package. Run follow composer command:

php artisan vendor:publish --provider="DeveloperDynamo\Crowdscore\CrowdscoreProvider"

#Put your Crowdscore api key In config/crowdscore.php you can put your crowdsource API KEY used by package to authorize your requests.

return [
	
	/*
	 * API KEY of your Crowdscore account
	 */
    "key" => '',
	
	/*
	 * Crowdscore API v1 endpoint
	 */
	"endpoint" => "https://api.crowdscores.com/api/v1",
	
	/*
	 * Connection timeout 
	 */
	"timeout" => 120,

];

#Call Crowdscore API

###Competitions

use Crowdscore;

$competitions = Crowdscore::competitions();

var_dump($competitions);

###Seasons

use Crowdscore;

$seasons = Crowdscore::seasons();

var_dump($seasons);

###Teams

use Crowdscore;

$teams = Crowdscore::teams();

var_dump($teams);

Teams accept a few parameters as round_ids or competitions_ids. You can pass the params into teams() method:

// Single value
$teams = Crowdscore::teams(2323, 3232);

//Array for multiple values
$teams = Crowdscore::teams([2323, 2324], [3232, 3233]);

###Matches

use Crowdscore;

$matches = Crowdscore::matches();

var_dump($matches);

Also /matches route accept a few params tha you can treat in the same way of /teams.

crowdscore's People

Contributors

ilvalerione avatar

Watchers

James Cloos avatar Oyebanji Jacob Mayowa 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.