PHPackages                             dvzakusilo/php-services-connector - 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. dvzakusilo/php-services-connector

ActiveLibrary

dvzakusilo/php-services-connector
=================================

Extensible library to connect to API services from PHP.

0.1(6y ago)233[2 PRs](https://github.com/dvzakusilo/php-services-connector/pulls)BSD-3-ClausePHPPHP ^7.0.0

Since Nov 29Pushed 3y ago1 watchersCompare

[ Source](https://github.com/dvzakusilo/php-services-connector)[ Packagist](https://packagist.org/packages/dvzakusilo/php-services-connector)[ RSS](/packages/dvzakusilo-php-services-connector/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (1)Versions (4)Used By (0)

php-services-connector
======================

[](#php-services-connector)

Extensible library to connect to API services from PHP.

The library allows you to inherit connectors to any service and create any set of methods. To work, you need to create your own class and inherit the service.

```
class TestConnect extends PSRVConnector\Service
```

Next, we connect to the library a set of methods for working with the service, issued in the form of traits.

```
use TraitName;
```

You can write your own connectors or use ready-made ones. All of them must inherit the connector class ` \ PSRVConnector \ Interfaces \ ConnectorInterface`

We initialize the connector, connect the traits (a set of methods for interacting with the connector), and write our own any methods - wrappers over the traits, or use as is.

An example of using the service when connecting to the DaData standardization API.

```
use PSRVConnector\Connectors\Dadata\API\Clean;
use PSRVConnector\Connectors\Dadata\Connector;

require 'vendor/autoload.php';

class TestConnect extends PSRVConnector\Service
{
    use Clean;

    public function __construct()
    {
        parent::__construct(new Connector(
                'API_KEY',
                'SECRET_KEY',
                ['base_uri' => 'https://cleaner.dadata.ru/api/v1/']
            )
        );
    }

    public function getDatByAddress(string $sBody)
    {
        return $this->getAddress($sBody);
    }
}

$obTest = new TestConnect();
var_dump($obTest->getDatByAddress('мск сухонска 11/-89'));
```

###  Health Score

22

—

LowBetter than 23% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity44

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2353d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/45631357?v=4)[dvzakusilo](/maintainers/dvzakusilo)[@dvzakusilo](https://github.com/dvzakusilo)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/dvzakusilo-php-services-connector/health.svg)

```
[![Health](https://phpackages.com/badges/dvzakusilo-php-services-connector/health.svg)](https://phpackages.com/packages/dvzakusilo-php-services-connector)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

1.8k245.3k20](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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