PHPackages                             bamberjp/dmwsphp - 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. [API Development](/categories/api)
4. /
5. bamberjp/dmwsphp

ActiveLibrary[API Development](/categories/api)

bamberjp/dmwsphp
================

DMWS-PHP is a library that aims to simplify the use of the Digital Measures Web Services Platform for PHP Developers.

044PHP

Since Aug 22Pushed 8y agoCompare

[ Source](https://github.com/bamberjp/dmwsphp)[ Packagist](https://packagist.org/packages/bamberjp/dmwsphp)[ RSS](/packages/bamberjp-dmwsphp/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

DMWSPHP
=======

[](#dmwsphp)

DMWS-PHP is a library that aims to simplify the use of the Digital Measures Web Services Platform for PHP Developers. This project is currently under development and can not perform all operations available via the REST API.

Project sponsored by the Feliciano School of Business.

Dependencies
============

[](#dependencies)

This library requires the [Httful HTTP Client Library](https://github.com/nategood/httpful).

Getting Started
===============

[](#getting-started)

Setup Connection
----------------

[](#setup-connection)

```
$conn = new DMWSConnection("[USERNAME]", "[PASSWORD]");
```

or to use BETA Environment:

```
$conn = new DMWSConnection("[USERNAME]", "[PASSWORD]", false, true);
```

Examples
========

[](#examples)

Get Schema Resources
--------------------

[](#get-schema-resources)

```
try {
	$ListResource = $conn->getSchema();

	foreach($ListResource as $key => $SchemaResource) {
		print $SchemaResource->getText() . "";
	}
} catch (Exception $e) {
	print $e;
}
```

Get Default Schema Resource
---------------------------

[](#get-default-schema-resource)

```
try {
	$SchemaResource = $conn->getDefaultSchema();

	print $SchemaResource->getText();
} catch (Exception $e) {
	print $e;
}
```

Schema Entity Resources
-----------------------

[](#schema-entity-resources)

```
try {
	$SchemaEntityListResource = $conn->getDefaultSchema()->getSchemaEntities();

	foreach ($SchemaEntityListResource as $View) {
		$SchemeEntityResources = $View->getSchemaEntityResources();
		foreach ($SchemeEntityResources as $SchemaEntity) {
			print $SchemaEntity;
		}
	}
} catch (Exception $e) {
	print $e;
}
```

Schema Index Resources and Index Entries
----------------------------------------

[](#schema-index-resources-and-index-entries)

```
try {
	$SchemaIndexResources = $conn->getDefaultSchema()->getSchemaIndices();

	foreach ($SchemaIndexResources as $SchemaIndexResource) {
		print $SchemaIndexResource;
		foreach ($SchemaIndexResource->getIndexEntries() as $IndexEntry) {
			print $IndexEntry;
		}
	}
} catch (Exception $e) {
	print $e;
}
```

PCI
---

[](#pci)

```
try {
	$SchemaResource = $conn->getDefaultSchema();
	$PCIRecords = $conn->getPCI($SchemaResource);
	foreach($PCIRecords as $Record) {
		print $Record . "";
	}
} catch (Exception $e) {
	print $e;
}
```

INTELLCONT
----------

[](#intellcont)

```
try {
	$SchemaResource = $conn->getDefaultSchema();

	$INTELLCONTRecords = $conn->getINTELLCONT($SchemaResource);
	foreach($INTELLCONTRecords as $Record) {
		print $Record . "";

		$Authors = $Record->getAuthors();
		foreach ($Authors as $Author) {
			print $Author;
		}
	}
} catch (Exception $e) {
	print $e;
}
```

Changelog
---------

[](#changelog)

08.22.2017 Removed bad argument in function getINTELLCONT() in DMWSConnection.

Support
-------

[](#support)

Contact me directly via email for support at . Feel free to share how you are using this code in your own projects.

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community6

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/1f79a9318bcc4793dd4cdd50ff2217211dcc585bd2cf1a104689fca8be3855f7?d=identicon)[bamberjp](/maintainers/bamberjp)

---

Top Contributors

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

---

Tags

php

### Embed Badge

![Health badge](/badges/bamberjp-dmwsphp/health.svg)

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

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M474](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M270](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M186](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M33](/packages/facebook-php-business-sdk)[microsoft/microsoft-graph

The Microsoft Graph SDK for PHP

65723.5M95](/packages/microsoft-microsoft-graph)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)

PHPackages © 2026

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