irkfdb / irkfdb-laravel-package
A wrapper over irkfdb-php-client for laravel
dev-master
2018-04-05 13:08 UTC
Requires
- irkfdb/irkfdb-php-client: dev-master
Requires (Dev)
- orchestra/testbench: ^3.5@dev
- phpunit/phpunit: 7.0.x-dev
This package is not auto-updated.
Last update: 2024-11-15 23:23:09 UTC
README
IRKFDB Laravel Package
It is a wrapper package made on top of irkfdb-php-client for laravel.
Installation
IrkfdbLaravel requires PHP 7.0 and above. This particular version supports Larave 5.5 and above.
To get the package, simply require using composer
composer require irkfdb/irkfdb-laravel-package
If automatic package discovery is not used in the project then you need to register the service provider of this package in config/app.php
'provides' => [
...
\Irkfdb\IrkfdbLaravel\IrkfdbLaravelServiceProvider::class,
...
]
and you can optinally alias our facade
'aliases' => [
...
'IrkfdbLaravel' => \Irkfdb\IrkfdbLaravel\IrkfdbLaravelFacade::class
...
]
Example Usage
use IrkfdbLaravel;
class TestController {
public function index()
{
$categories = IrkfdbLaravel::getCategories();
$randomFact = IrkfdbLaravel::getRandomFact();
}
}
Test Cases
You can run the test cases by running the following command
./vendor/bin/phpunit --configuration phpunit.xml