PHPackages                             cvf/pallet-api - 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. cvf/pallet-api

ActiveLibrary[API Development](/categories/api)

cvf/pallet-api
==============

Inventory &amp; Warehouse Management Extension for Fleetbase

00JavaScript

Since Jun 11Pushed 1y agoCompare

[ Source](https://github.com/adminCarVachTech/pallet)[ Packagist](https://packagist.org/packages/cvf/pallet-api)[ RSS](/packages/cvf-pallet-api/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

 [![](https://private-user-images.githubusercontent.com/816371/255811564-b8f49fe3-4464-4c9a-b296-7f62c2f45d48.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzU3NjQ3NTYsIm5iZiI6MTc3NTc2NDQ1NiwicGF0aCI6Ii84MTYzNzEvMjU1ODExNTY0LWI4ZjQ5ZmUzLTQ0NjQtNGM5YS1iMjk2LTdmNjJjMmY0NWQ0OC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwNDA5JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDQwOVQxOTU0MTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1hZGQ3MDBjZjJlODMwYTQ5Y2Y5Njg5YmFlZGJmYmQ4ZDNlMTgyMzdiMjRjYzZjYTUxNzZiOWIxMjgyMjRjY2U1JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.IIGAJbVBr5dZk3TjcJe40q07Cjgcb6p-V3lab0e7wRo)](https://private-user-images.githubusercontent.com/816371/255811564-b8f49fe3-4464-4c9a-b296-7f62c2f45d48.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzU3NjQ3NTYsIm5iZiI6MTc3NTc2NDQ1NiwicGF0aCI6Ii84MTYzNzEvMjU1ODExNTY0LWI4ZjQ5ZmUzLTQ0NjQtNGM5YS1iMjk2LTdmNjJjMmY0NWQ0OC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwNDA5JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDQwOVQxOTU0MTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1hZGQ3MDBjZjJlODMwYTQ5Y2Y5Njg5YmFlZGJmYmQ4ZDNlMTgyMzdiMjRjYzZjYTUxNzZiOWIxMjgyMjRjY2U1JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.IIGAJbVBr5dZk3TjcJe40q07Cjgcb6p-V3lab0e7wRo)

 Inventory &amp; Warehouse Management Extension for Fleetbase

---

Overview
--------

[](#overview)

This monorepo contains both the frontend and backend components of the Pallet extension for Fleetbase. The frontend is built using Ember.js and the backend is implemented in PHP.

### Requirements

[](#requirements)

- PHP 7.3.0 or above
- Ember.js v3.24 or above
- Ember CLI v3.24 or above
- Node.js v14 or above

Structure
---------

[](#structure)

```
├── addon
├── app
├── assets
├── translations
├── config
├── node_modules
├── server
│ ├── config
│ ├── data
│ ├── migrations
│ ├── resources
│ ├── src
│ ├── tests
│ └── vendor
├── tests
├── testem.js
├── index.js
├── package.json
├── phpstan.neon.dist
├── phpunit.xml.dist
├── pnpm-lock.yaml
├── ember-cli-build.js
├── composer.json
├── CONTRIBUTING.md
├── LICENSE.md
├── README.md

```

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

[](#installation)

### Backend

[](#backend)

Install the PHP packages using Composer:

```
composer require fleetbase/core-api
composer require fleetbase/fleetops
composer require fleetbase/pallet
```

### Frontend

[](#frontend)

Install the Ember.js Engine/Addon:

```
pnpm install @fleetbase/pallet
```

Usage
-----

[](#usage)

### Backend

[](#backend-1)

🧹 Keep a modern codebase with **PHP CS Fixer**:

```
composer lint
```

⚗️ Run static analysis using **PHPStan**:

```
composer test:types
```

✅ Run unit tests using **PEST**

```
composer test:unit
```

🚀 Run the entire test suite:

```
composer test
```

### Frontend

[](#frontend-1)

🧹 Keep a modern codebase with **ESLint**:

```
pnpm lint
```

✅ Run unit tests using **Ember/QUnit**

```
pnpm test
pnpm test:ember
pnpm test:ember-compatibility
```

🚀 Start the Ember Addon/Engine

```
pnpm start
```

🔨 Build the Ember Addon/Engine

```
pnpm build
```

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

[](#contributing)

See the Contributing Guide for details on how to contribute to this project.

License
-------

[](#license)

This project is licensed under the MIT License.

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance27

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 Bus Factor1

Top contributor holds 69.7% 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/a5bf0cf6605d963a9d7665146495468ae7dcfa72b529d19fd58998cead684c5f?d=identicon)[carvach](/maintainers/carvach)

---

Top Contributors

[![TemuulenBM](https://avatars.githubusercontent.com/u/124872945?v=4)](https://github.com/TemuulenBM "TemuulenBM (23 commits)")[![roncodes](https://avatars.githubusercontent.com/u/816371?v=4)](https://github.com/roncodes "roncodes (9 commits)")[![pawan-carvach](https://avatars.githubusercontent.com/u/161474155?v=4)](https://github.com/pawan-carvach "pawan-carvach (1 commits)")

### Embed Badge

![Health badge](/badges/cvf-pallet-api/health.svg)

```
[![Health](https://phpackages.com/badges/cvf-pallet-api/health.svg)](https://phpackages.com/packages/cvf-pallet-api)
```

###  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)
