PHPackages                             zelibox/microsoft-dynamics-soap - 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. zelibox/microsoft-dynamics-soap

ActiveLibrary

zelibox/microsoft-dynamics-soap
===============================

Microsoft Dynamics SOAP integration with PHP (http authentication)

121PHP

Since Aug 19Pushed 10y ago1 watchersCompare

[ Source](https://github.com/zelibox/MicrosoftDynamicsSOAP)[ Packagist](https://packagist.org/packages/zelibox/microsoft-dynamics-soap)[ RSS](/packages/zelibox-microsoft-dynamics-soap/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

MicrosoftDynamicsSOAP
=====================

[](#microsoftdynamicssoap)

Microsoft Dynamics SOAP integration with PHP (http authentication)

\##Connect:

```
$microsoftDynamicsSOAP = new \MicrosoftDynamicsSOAP\Connector(
    'ORG\Username',
    'password',
    'http://host.com/TEST/XRMServices/2011/Organization.svc/web'
);
```

\##Example Create:

```
$requestCreate = $microsoftDynamicsSOAP->createRequestCreate();
$requestCreate
    ->setEntityName('phonecall');
    ->addValue('string', 'subject', 'New message')
    ->addValue('string', 'phonenumber', '900990099')
    ->addValue('boolean', 'is_active', false)
    ->addValue(
        'entityReference',
        'client',
        array(
            'logicalName' => 'client',
            'id' => 'A83C1811-9336-E511-9122-005056995950'
        )
    )
    ->addValue('datetime', 'date_contact', new \DateTime());

/** @var ResponseCreate $response */
$response = $requestCreate->send();

echo $response->getGuid();
```

\##Example RetrieveMultiple:

```
$requestRetrieveMultiple = $microsoftDynamicsSOAP->createRequestRetrieveMultiple();
$requestRetrieveMultiple
    ->setEntityName('lead')
    ->setColumns(array( // not required
        'subject',
        'phonenumber'
    ));

/** @var ResponseRetrieveMultiple $response */
$response = $requestRetrieveMultiple->send();

var_dump($response->getEntities());
```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

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

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/zelibox-microsoft-dynamics-soap/health.svg)

```
[![Health](https://phpackages.com/badges/zelibox-microsoft-dynamics-soap/health.svg)](https://phpackages.com/packages/zelibox-microsoft-dynamics-soap)
```

PHPackages © 2026

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