PHPackages                             aarongrtech/qbwc-laravel - 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. aarongrtech/qbwc-laravel

ActiveLibrary[API Development](/categories/api)

aarongrtech/qbwc-laravel
========================

Laravel-flavored QuickBooks Web Connector package

0911[1 PRs](https://github.com/aarongrtech/qbwc-laravel/pulls)PHP

Since May 22Pushed 12mo ago1 watchersCompare

[ Source](https://github.com/aarongrtech/qbwc-laravel)[ Packagist](https://packagist.org/packages/aarongrtech/qbwc-laravel)[ RSS](/packages/aarongrtech-qbwc-laravel/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (4)Used By (0)

QBWC Laravel
============

[](#qbwc-laravel)

**QBWC Laravel** is a Laravel-flavored QuickBooks Web Connector package. This library is still a work in progress but is largely complete and stable, offering communication with QuickBooks Desktop through SOAP services.

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

[](#installation)

To install the package, run:

```
composer require aarongrtech/qbwc-laravel
```

Ensure that your `composer.json` includes the necessary autoload settings:

```
"autoload": {
    "psr-4": {
        "AaronGRTech\\QbwcLaravel\\": "./src/AaronGRTech/QbwcLaravel"
    }
},
"extra": {
    "laravel": {
        "providers": [
            "AaronGRTech\\QbwcLaravel\\Providers\\QbwcServiceProvider"
        ]
    }
}
```

After updating Composer, add the service provider to the `config/app.php` file:

```
'providers' => [
    // Other Service Providers

    AaronGRTech\QbwcLaravel\Providers\QbwcServiceProvider::class,
],
```

Usage
-----

[](#usage)

### Setting Up WSDL File

[](#setting-up-wsdl-file)

Ensure that the WSDL file is available at `storage_path('app/wsdl/QBWebConnectorSvc.wsdl')`. You can publish the WSDL file to the storage directory using:

```
php artisan vendor:publish --provider="AaronGRTech\QbwcLaravel\Providers\QbwcServiceProvider"
```

### Routes

[](#routes)

This package provides routes to handle SOAP requests. These routes are automatically registered by the `QbwcServiceProvider`.

### Controller

[](#controller)

The `SoapController` handles various SOAP requests:

- **Server Version**

    - Route: `/soap/serverVersion`
    - Method: `serverVersion`
    - Request: `POST`
- **Client Version**

    - Route: `/soap/clientVersion`
    - Method: `clientVersion`
    - Request: `POST`
- **Authenticate**

    - Route: `/soap/authenticate`
    - Method: `authenticate`
    - Request: `POST`
- **Send Request XML**

    - Route: `/soap/sendRequestXML`
    - Method: `sendRequestXML`
    - Request: `POST`
- **Receive Response XML**

    - Route: `/soap/receiveResponseXML`
    - Method: `receiveResponseXML`
    - Request: `POST`

Post-Installation Steps
-----------------------

[](#post-installation-steps)

After installing this package, please update your application's `composer.json` file to autoload the callbacks:

```
{
    "autoload": {
        "psr-4": {
            "App\\Callbacks\\": "app/Callbacks/"
        }
    }
}
```

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

[](#requirements)

- PHP &gt;= 7.4
- Laravel framework
- Extensions: `ext-dom`, `ext-mbstring`, `ext-soap`
- Dependency: `wsdltophp/packagebase` ~5.0

License
-------

[](#license)

This package is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.

Authors
-------

[](#authors)

- AaronGRTech -

Contributing
------------

[](#contributing)

Please read the [CONTRIBUTING](CONTRIBUTING.md) file for details on our code of conduct, and the process for submitting pull requests.

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance37

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity19

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/28929b4b0645bae0d217b9e6efb4f8bed51114195a3e4fd8ace63ef723594e2e?d=identicon)[goldenruleweb](/maintainers/goldenruleweb)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/aarongrtech-qbwc-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/aarongrtech-qbwc-laravel/health.svg)](https://phpackages.com/packages/aarongrtech-qbwc-laravel)
```

###  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)[facebook/php-business-sdk

PHP SDK for Facebook Business

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

PHP wrapper for the Meilisearch API

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

Google API Core for PHP

265103.1M454](/packages/google-gax)[google/common-protos

Google API Common Protos for PHP

173103.7M50](/packages/google-common-protos)

PHPackages © 2026

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