PHPackages                             dazza76/zuora - 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. dazza76/zuora

ActiveLibrary[API Development](/categories/api)

dazza76/zuora
=============

A Laravel 4 package for the PHPForce Zuora library

029PHP

Since Dec 16Pushed 11y ago1 watchersCompare

[ Source](https://github.com/dazza76/Laravel4-Zuora-library)[ Packagist](https://packagist.org/packages/dazza76/zuora)[ RSS](/packages/dazza76-zuora/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel4-Zuora-library
======================

[](#laravel4-zuora-library)

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

[](#installation)

Install this package through Composer. To your `composer.json` file, add:

```
"require-dev": {
	"Dazza76/Zuora": "dev-master"
}
```

Next, run `composer update` to download it.

add the service provider to `app/config/app.php`, within the `providers` array.

```
'providers' => array(
	// ...

	'Dazza76\Zuora\ZuoraServiceProvider'
)
```

Configuration
-------------

[](#configuration)

Run `php artisan config:publish dazza76/zuora` to publish the package config file. Run `php artisan asset:publish dazza76/zuora` to publish the public wsql file. Add your username, password and path to your file which can be obtained from your Zuora and select an endpoint to connect to

```
Config::set('zuora::connections.runtime', array(
			'wsdl' => 'zuora.a.54.0.wsdl',
                        'username' => '',
                        'password' => '',
                        //'endpoint' => 'https://www.zuora.com/apps/services/a/54.0'
                         'endpoint' => 'https://apisandbox.zuora.com/apps/services/a/54.0'
));
```

Accessing connections
---------------------

[](#accessing-connections)

You can access default Zuora connection via the `Zuora::connection` method:

```
Zuora::connection()->queryall(...);
```

When using multiple connections you can access each specific Zuora connection by passing connection name:

```
Zuora::connection('runtime')->queryall(...);
```

Basic usage examples
--------------------

[](#basic-usage-examples)

```
// With custom connection
$listing = Zuora::connection('my-Zuora-connection')->queryall(...);

// with default connection
$listing = Zuora::connection()->queryall(...);
```

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

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/42bc5e10a1fe656d611262e44371e8b89b58cd46513ad24b27b3c47e4059bde0?d=identicon)[dazza76](/maintainers/dazza76)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/dazza76-zuora/health.svg)

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

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

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

A PHP wrapper for Twilio's API

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

GitHub API v3 client

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

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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