PHPackages                             yorch/feenicia - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. yorch/feenicia

ActiveLibrary

yorch/feenicia
==============

Unofficial PHP Feenicia SDK

05PHP

Since Sep 2Pushed 6y ago1 watchersCompare

[ Source](https://github.com/yorch81/feenicia)[ Packagist](https://packagist.org/packages/yorch/feenicia)[ RSS](/packages/yorch-feenicia/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Feenicia SDK
============

[](#feenicia-sdk)

Description
-----------

[](#description)

Unofficial Feenicia PHP SDK Library

Requirements
------------

[](#requirements)

- [PHP 5.4.1 or higher](http://www.php.net/)

Developer Documentation
-----------------------

[](#developer-documentation)

Execute phpdoc -d feenicia/

Test
----

[](#test)

Change credentials and run test.php

Installation
------------

[](#installation)

Create file composer.json

```

{
    "require": {
    	"php": ">=5.4.0",
      "apache/log4php": "2.3.0",
      "yorch/feenicia" : "dev-master"
    }
}

```

Execute composer.phar install

Example
-------

[](#example)

```

// Configure log
$config = array(
    'appenders' => array(
        'default' => array(
            'class' => 'LoggerAppenderFile',
            'layout' => array(
                'class' => 'LoggerLayoutPattern',
                'params' => array(
                    'conversionPattern' => '%date %logger %-5level %msg%n'
                )
            ),
            'params' => array(
                'file' => ('feenicia.log'),
                'append' => true
            ),
        ),
    ),
    'rootLogger' => array(
        'appenders' => array('default'),
    ),
);

\Logger::configure($config);

// Configure Feenicia
$cfgFeeKeys = array('MERCHANT_REQUEST_IV' => '',
                 'MERCHANT_REQUEST_KEY' => '',
                 'MERCHANT_REQUEST_SIGNATURE_IV' => '',
                 'MERCHANT_REQUEST_SIGNATURE_KEY' => '',
                 'MERCHANT_RESPONSE_IV' => '',
                 'MERCHANT_RESPONSE_KEY' => '',
                 'MERCHANT_RESPONSE_SIGNATURE_IV' => '',
                 'MERCHANT_RESPONSE_SIGNATURE_KEY' => '');

$cfgFeeCredentials = array('MERCHANTID' => '',
                        'AFFILIATION' => '',
                        'USERID' => '',
                        'PASSWORD' => '');

$fee = Feenicia\SDK::getInstance(Feenicia\SDK::SANDBOX);

$fee->setKeys($cfgFeeKeys);
$fee->setCredentials($cfgFeeCredentials);

$payment = new Feenicia\Payment();
$payment->setCard('4917988912987740');
$payment->setCardHolderName('FEENICIA');
$payment->setCVV('703');
$payment->setExpirationDate('1909');
$payment->sendMail(true);
$payment->setMail("the.yorch@gmail.com");
$payment->setItem('Producto 1', 10.00, 2);
$payment->setItem('Producto 2', 5.00, 3);

$result = $fee->applyPayment($payment);

if (!$result["ERRORTRAN"]) {
    var_dump($result);
  //$fee->reversePayment($result);
}
else {
    var_dump($result);
}

```

Notes
-----

[](#notes)

This unofficial library for payments gateway feenicia.

References
----------

[](#references)

P.D. Let's go play !!!

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/cac2c0353ae65e0178e939fe92047396e8dd81d8461cfd5ae2492cd32c1534bd?d=identicon)[yorch](/maintainers/yorch)

---

Top Contributors

[![yorch81](https://avatars.githubusercontent.com/u/4605324?v=4)](https://github.com/yorch81 "yorch81 (1 commits)")

### Embed Badge

![Health badge](/badges/yorch-feenicia/health.svg)

```
[![Health](https://phpackages.com/badges/yorch-feenicia/health.svg)](https://phpackages.com/packages/yorch-feenicia)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
