wigeeky/laravel-wikidata is a Laravel package for laravel integration with wikidata sparql api.
It currently has 2 GitHub stars and 2 downloads on Packagist.
Install it with composer require wigeeky/laravel-wikidata.
Discover more Laravel packages by wigeeky
or browse all Laravel packages to compare alternatives.
Last updated
This Laravel package assists with getting data from Wikidata's SPARQL APIs.
You can install the package via composer:
composer require wigeeky/laravel-wikidata
You can publish the config file with:
php artisan vendor:publish --tag="laravel-wikidata-config"
This is the contents of the published config file:
return [
'base_url' => 'https://query.wikidata.org/sparql?query=',
];
use WiGeeky\Wikidata\Facades\Wikidata;
$query = "SELECT ?country ?code ?flag WHERE {?item wdt:P31 wd:Q3624078 . ?item wdt:P474 ?code . ?item wdt:P297 ?country . ?item wdt:P41 ?flag}";
$collection = Wikidata::get($query);
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.