$AMI_ENV_SETTINGS = array('mode' => 'full');
require 'ami_env.php';
// Get cart total amount
$aTotal = $oEshopCart->getTotal();
// Get array of cart items objects
$aCartItems = $oEshopCart->getItems();
foreach($aCartItems as $oCartItem){
// Get cart item price info
$oCartItem->getPriceInfo();
// Get cart item tax values
$oCartItem->getTax();
// Get cart item discount values
$oCartItem->getDiscount();
// Get cart item shipping values
$oCartItem->getShipping();
}