PHPackages                             flexsim/flexnet-operations - 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. flexsim/flexnet-operations

ActiveLibrary[API Development](/categories/api)

flexsim/flexnet-operations
==========================

A package for connecting with the FlexNet Operations api

v2.0.1(1y ago)01.0k1[4 PRs](https://github.com/flexsim/flexnet-operations/pulls)MITPHPPHP ^8.3CI passing

Since Oct 19Pushed 4mo ago1 watchersCompare

[ Source](https://github.com/flexsim/flexnet-operations)[ Packagist](https://packagist.org/packages/flexsim/flexnet-operations)[ Docs](https://github.com/flexsim/flexnet-operations)[ RSS](/packages/flexsim-flexnet-operations/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (9)Versions (33)Used By (0)

A package for connecting with the FlexNet Operations api
========================================================

[](#a-package-for-connecting-with-the-flexnet-operations-api)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d347a66525f35e46802dc2e49b26bfc7907c7886f9ae10c05e689443bcf9e632/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f666c657873696d2f666c65786e65742d6f7065726174696f6e732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/flexsim/flexnet-operations)[![GitHub Tests Action Status](https://camo.githubusercontent.com/2a39c1b73f6e89e72d6a65144623593a6ec7ef86c94e708a75a255ea1d0affaa/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f666c657873696d2f666c65786e65742d6f7065726174696f6e732f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/flexsim/flexnet-operations/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/956f8268dd7a4c9592c3e08167b65098a022fab7b2af09ce4771cd20d7740a8e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f666c657873696d2f666c65786e65742d6f7065726174696f6e732f466978253230504850253230636f64652532307374796c652532306973737565733f6c6162656c3d636f64652532307374796c65)](https://github.com/flexsim/flexnet-operations/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/ddbefdfbe012493cb2ebce2e4e8d78d75863197312b5725ebeac77fe98e23eb9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f666c657873696d2f666c65786e65742d6f7065726174696f6e732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/flexsim/flexnet-operations)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

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

[](#installation)

You can install the package via composer:

```
composer require flexsim/flexnet-operations
```

You can publish the config file with:

```
php artisan vendor:publish --tag="flexnet-operations-config"
```

This is the contents of the published config file:

```
return [
];
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="flexnet-operations-views"
```

Usage
-----

[](#usage)

```
$flexnetOperations = new Flexsim\FlexnetOperations();
echo $flexnetOperations->echoPhrase('Hello, Flexsim!');
```

Type Generation
===============

[](#type-generation)

1. Fix types in wsdl files

    1. ProductPackagineService
        - featureBundlesListType - add minOccurs="0" to the "featureBundle" property
        - featuresListType - add minOccurs="0" to the "feature" property
        - getProductRelationshipsResponseType - add minOccurs="0" to the "relationship" property
    2. LicenseService
        - fulfillmentHistoryDetailsType - add minOccurs="0" to the "record" property
2. Normalize Extension types in the wsdl file by extracting them from the base type into the child type
3. Run the flexnet WSDL file through the xml to json tool here:

Client Factory Generation
=========================

[](#client-factory-generation)

Make sure client factories use the BasicAuth middleware like so:

```
public static function factory(string $wsdl, string $username, string $password): EntitlementOrderServiceClient
{
    $engine = DefaultEngineFactory::create(
        ExtSoapOptions::defaults($wsdl, [])
            ->withClassMap(EntitlementOrderServiceClassmap::getCollection()),
        Psr18Transport::createForClient(
            new PluginClient(
                Psr18ClientDiscovery::find(),
                [
                    new AuthenticationPlugin(new BasicAuth($username, $password)),
                ]
            )
        )
    );
}
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

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

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Cole Shirley](https://github.com/cole.shirley)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

45

—

FairBetter than 93% of packages

Maintenance62

Regular maintenance activity

Popularity18

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity76

Established project with proven stability

 Bus Factor1

Top contributor holds 80.6% 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

Every ~47 days

Recently: every ~129 days

Total

27

Last Release

446d ago

Major Versions

v1.2.0 → v2.0.0-beta12022-12-05

PHP version history (4 changes)v1.0PHP ^8.0

v1.2.0PHP ^8.0 | ^8.1

v2.0.0-beta1PHP ^8.1

v2.0.0-beta17PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/26300af7b89f84f6a6b6ef2ffb592a3e5663b3d8ed7d65a6699a86aab65ed411?d=identicon)[cole.shirley](/maintainers/cole.shirley)

---

Top Contributors

[![coleshirley](https://avatars.githubusercontent.com/u/84236864?v=4)](https://github.com/coleshirley "coleshirley (112 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (15 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (12 commits)")

---

Tags

laravelFlexsimflexnet-operations

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/flexsim-flexnet-operations/health.svg)

```
[![Health](https://phpackages.com/badges/flexsim-flexnet-operations/health.svg)](https://phpackages.com/packages/flexsim-flexnet-operations)
```

###  Alternatives

[simplestats-io/laravel-client

Client for SimpleStats!

4515.5k](/packages/simplestats-io-laravel-client)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[njoguamos/laravel-plausible

A laravel package for interacting with plausible analytics api.

208.8k](/packages/njoguamos-laravel-plausible)[ryangjchandler/bearer

Minimalistic token-based authentication for Laravel API endpoints.

8129.8k](/packages/ryangjchandler-bearer)[codebar-ag/laravel-docuware

DocuWare integration with Laravel

1221.1k](/packages/codebar-ag-laravel-docuware)[combindma/laravel-facebook-pixel

Meta pixel integration for Laravel

4956.9k](/packages/combindma-laravel-facebook-pixel)

PHPackages © 2026

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