PHPackages                             businessprocess/bpt-store - 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. [File &amp; Storage](/categories/file-storage)
4. /
5. businessprocess/bpt-store

ActiveExtention[File &amp; Storage](/categories/file-storage)

businessprocess/bpt-store
=========================

BPT Cloud File Storage. Keep your file security!

1.0.10(1y ago)02.6k↓71.7%1MITPHP

Since Apr 21Pushed 1y agoCompare

[ Source](https://github.com/businessprocess/bpt-store)[ Packagist](https://packagist.org/packages/businessprocess/bpt-store)[ Docs](https://dev-api.bpt-store.com/api-docs/)[ RSS](/packages/businessprocess-bpt-store/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (1)Versions (10)Used By (0)

### Installing via Composer

[](#installing-via-composer)

The recommended way to install BPT Store is through [Composer](http://getcomposer.org).

```
# Install Composer
curl -sS https://getcomposer.org/installer | php
```

Next, run the Composer command to install the latest stable version of Guzzle:

```
composer require businessprocess/bpt-store
```

After installing, you need to require Composer's autoloader:

```
require 'vendor/autoload.php';
```

Init Client

```
$client = new \Kialex\BptStore\Client([
    // Necessary
    //
    'login' => 'bpt_store_login',
    'password' => 'bpt_store_password',
    'url' => 'https://fs-api-dev.webwellness.net/api/v1/',
    'sandbox' => true, // `false` is Production mode. Default is `false`
    //
    // Optional
    //
    // 'maxAttempts' => 5 // Attempts to reconnect if something went wrong, Default is `3`
    // 'versionNumber' => 1 // API version number, Default is `1`
    // See `DEV_URl` and `PROD_URL` constants of class
]);

$bptFileCloud = new \Kialex\BptStore\File($client);
```

Push file to BPT storage

```
$fileData = $bptFileCloud->add(
    'path_to_file', // Full path to file or Absolute URL
    445566, // Group Id
    true // If U want to create a private file -> set `false`. Default is `true`.
);
```

Example content of `$fileData`

```
{
    "uuid": "6a29d6bd9267491ab84c6d65280fba1658b6ebbd1689275b408feab2f187e367",
    "name": "Example_File.png",
    "size": 117185,
    "mimeType": "image/png",
    "hash": "58b6ebbd1689275b408feab2f187e367"
}
```

Get public file URL

```
$publicUrl = $bptFileCloud->getPublicUrl('58b6ebbd1689275b408feab2f187e367') // Put `hash` from `$fileData`;
```

Get private file URL

```
$publicUrl = $bptFileCloud->getPrivateUrl('6a29d6bd9267491ab84c6d65280fba1658b6ebbd1689275b408feab2f187e367') // Put `uuid` from `$fileData`;
```

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance46

Moderate activity, may be stable

Popularity20

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 63.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 ~231 days

Recently: every ~454 days

Total

9

Last Release

409d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2129435?v=4)[KAA87](/maintainers/KAA87)[@KAA87](https://github.com/KAA87)

---

Top Contributors

[![kialex](https://avatars.githubusercontent.com/u/19323131?v=4)](https://github.com/kialex "kialex (7 commits)")[![KAA87](https://avatars.githubusercontent.com/u/2129435?v=4)](https://github.com/KAA87 "KAA87 (3 commits)")[![dyeganyan](https://avatars.githubusercontent.com/u/116365117?v=4)](https://github.com/dyeganyan "dyeganyan (1 commits)")

### Embed Badge

![Health badge](/badges/businessprocess-bpt-store/health.svg)

```
[![Health](https://phpackages.com/badges/businessprocess-bpt-store/health.svg)](https://phpackages.com/packages/businessprocess-bpt-store)
```

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.3k543.5M2.6k](/packages/aws-aws-sdk-php)[google/cloud

Google Cloud Client Library

1.2k16.7M57](/packages/google-cloud)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M46](/packages/tencentcloud-tencentcloud-sdk-php)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k15](/packages/tempest-framework)[files.com/files-php-sdk

Files.com PHP SDK

2481.1k](/packages/filescom-files-php-sdk)

PHPackages © 2026

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