PHPackages                             apimatic-calculator/mannual-calculatorr - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. apimatic-calculator/mannual-calculatorr

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

apimatic-calculator/mannual-calculatorr
=======================================

it is used for performming basic maths

1.0.3(9mo ago)00MITPHPPHP ^7.2 || ^8.0

Since Jul 21Pushed 9mo agoCompare

[ Source](https://github.com/Husnain-allly/mannualcalphp)[ Packagist](https://packagist.org/packages/apimatic-calculator/mannual-calculatorr)[ Docs](https://www.apimatic.io)[ RSS](/packages/apimatic-calculator-mannual-calculatorr/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (5)Versions (4)Used By (0)

Getting Started with Manualpractice-SampleAPI
=============================================

[](#getting-started-with-manualpractice-sampleapi)

Introduction
------------

[](#introduction)

Sample API for manual practice.

Install the Package
-------------------

[](#install-the-package)

Run the following command to install the package and automatically add the dependency to your composer.json file:

```
composer require "apimatic-calculator/mannual-calculatorr:1.0.3"
```

Or add it to the composer.json file manually as given below:

```
"require": {
    "apimatic-calculator/mannual-calculatorr": "1.0.3"
}
```

You can also view the package at:

Initialize the API Client
-------------------------

[](#initialize-the-api-client)

***Note:*** Documentation for the client can be found [here.](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/client.md)

The following parameters are configurable for the API Client:

ParameterTypeDescriptionenvironment`Environment`The API environment.
 **Default: `Environment.PRODUCTION`**timeout`int`Timeout for API calls in seconds.
*Default*: `30`enableRetries`bool`Whether to enable retries and backoff feature.
*Default*: `false`numberOfRetries`int`The number of retries to make.
*Default*: `0`retryInterval`float`The retry time interval between the endpoint calls.
*Default*: `1`backOffFactor`float`Exponential backoff factor to increase interval between retries.
*Default*: `2`maximumRetryWaitTime`int`The maximum wait time in seconds for overall retrying requests.
*Default*: `0`retryOnTimeout`bool`Whether to retry on request timeout.
*Default*: `true`httpStatusCodesToRetry`array`Http status codes to retry against.
*Default*: `408, 413, 429, 500, 502, 503, 504, 521, 522, 524`httpMethodsToRetry`array`Http methods to retry against.
*Default*: `'GET', 'PUT'`loggingConfiguration[`LoggingConfigurationBuilder`](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/logging-configuration-builder.md)Represents the logging configurations for API callsproxyConfiguration[`ProxyConfigurationBuilder`](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/proxy-configuration-builder.md)Represents the proxy configurations for API callsauthorizationCodeAuth[`AuthorizationCodeAuth`](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/auth/oauth-2-authorization-code-grant.md)The Credentials Setter for OAuth 2 Authorization Code GrantThe API client can be initialized as follows:

```
use ManualpracticeSampleApiLib\Logging\LoggingConfigurationBuilder;
use ManualpracticeSampleApiLib\Logging\RequestLoggingConfigurationBuilder;
use ManualpracticeSampleApiLib\Logging\ResponseLoggingConfigurationBuilder;
use Psr\Log\LogLevel;
use ManualpracticeSampleApiLib\Environment;
use ManualpracticeSampleApiLib\Authentication\AuthorizationCodeAuthCredentialsBuilder;
use ManualpracticeSampleApiLib\Models\OauthScope;
use ManualpracticeSampleApiLib\ManualpracticeSampleApiClientBuilder;

$client = ManualpracticeSampleApiClientBuilder::init()
    ->authorizationCodeAuthCredentials(
        AuthorizationCodeAuthCredentialsBuilder::init(
            'OAuthClientId',
            'OAuthClientSecret',
            'OAuthRedirectUri'
        )
            ->oauthScopes(
                [
                    OauthScope::READ,
                    OauthScope::WRITE
                ]
            )
    )
    ->environment(Environment::PRODUCTION)
    ->loggingConfiguration(
        LoggingConfigurationBuilder::init()
            ->level(LogLevel::INFO)
            ->requestConfiguration(RequestLoggingConfigurationBuilder::init()->body(true))
            ->responseConfiguration(ResponseLoggingConfigurationBuilder::init()->headers(true))
    )
    ->build();
```

Authorization
-------------

[](#authorization)

This API uses the following authentication schemes.

- [`acgauth2 (OAuth 2 Authorization Code Grant)`](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/auth/oauth-2-authorization-code-grant.md)

List of APIs
------------

[](#list-of-apis)

- [API](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/controllers/api.md)
- [Createsquarerootmath](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/controllers/createsquarerootmath.md)
- [Addnumbermath](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/controllers/addnumbermath.md)
- [Subtractnumbermath](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/controllers/subtractnumbermath.md)
- [Multipliednumbermath](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/controllers/multipliednumbermath.md)
- [Updatenumbermath](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/controllers/updatenumbermath.md)

SDK Infrastructure
------------------

[](#sdk-infrastructure)

### Configuration

[](#configuration)

- [ProxyConfigurationBuilder](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/proxy-configuration-builder.md)
- [LoggingConfigurationBuilder](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/logging-configuration-builder.md)
- [RequestLoggingConfigurationBuilder](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/request-logging-configuration-builder.md)
- [ResponseLoggingConfigurationBuilder](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/response-logging-configuration-builder.md)

### HTTP

[](#http)

- [HttpRequest](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/http-request.md)

### Utilities

[](#utilities)

- [ApiResponse](https://www.github.com/Husnain-allly/mannualcalphp/tree/1.0.3/doc/api-response.md)

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance56

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity43

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.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

295d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/768cc957ea2649b552dafc2f1d086e2cb2754f325c2a52c78f0ed70f3a8bcd76?d=identicon)[Husnain-allly](/maintainers/Husnain-allly)

---

Top Contributors

[![Husnain-allly](https://avatars.githubusercontent.com/u/129303938?v=4)](https://github.com/Husnain-allly "Husnain-allly (5 commits)")

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/apimatic-calculator-mannual-calculatorr/health.svg)

```
[![Health](https://phpackages.com/badges/apimatic-calculator-mannual-calculatorr/health.svg)](https://phpackages.com/packages/apimatic-calculator-mannual-calculatorr)
```

###  Alternatives

[square/square

Use Square APIs to manage and run business including payment, customer, product, inventory, and employee management.

793.4M21](/packages/square-square)[paypal/paypal-server-sdk

PayPal's SDK for interacting with the REST APIs

53456.5k3](/packages/paypal-paypal-server-sdk)

PHPackages © 2026

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