germania-kg/prices

1.0.2 2022-03-30 10:10 UTC

This package is auto-updated.

Last update: 2024-03-29 03:38:03 UTC


README

Packagist PHP version Build Status Scrutinizer Code Quality Code Coverage Build Status

This package was destilled from legacy code!
You better do not want it to use this in production.

Installation

$ composer require germania-kg/prices

MySQL: This package requires a MySQL table germania_prices which you can install using germania_prices.sql in sql/ directory.

Usage

PdoPrices is a Callable for retrieving prices for any given article ID. It implements the container-interop (upcoming PSR 11 standard).

<?php
use Germania\Prices\PdoPrices;

$prices_factory = new PdoPrices( $pdo );
$prices_factory = new PdoPrices( $pdo, "my_custom_table" );

// Assume article has ID 42
$article = ...

// ContainerInterface:
$complete = $prices_factory->has( 42 );

// Getting may throw NoPriceFoundException
// Interop\Container\Exception\NotFoundException)
$prices = $prices_factory->get( 42 );


// Avoid Exception using __invoke:
// Returns always array, may be empty:
$prices = $prices_factory( 42 );


?>

Development

$ git clone https://github.com/GermaniaKG/Prices.git
$ cd Prices
$ composer install

Unit tests

Either copy phpunit.xml.dist to phpunit.xml and adapt to your needs, or leave as is. Run PhpUnit test or composer scripts like this:

$ composer test
# or
$ vendor/bin/phpunit