PHPackages                             gmrakibulhasan/api-progress-tracker - 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. gmrakibulhasan/api-progress-tracker

ActiveLibrary[API Development](/categories/api)

gmrakibulhasan/api-progress-tracker
===================================

A professional Laravel package for tracking API development progress with task management and team collaboration

v1.0.18(11mo ago)010MITBladePHP ^8.2CI failing

Since Jun 20Pushed 11mo agoCompare

[ Source](https://github.com/gmrakibulhasan/api-progress-tracker)[ Packagist](https://packagist.org/packages/gmrakibulhasan/api-progress-tracker)[ Docs](https://github.com/gmrakibulhasan/api-progress-tracker)[ RSS](/packages/gmrakibulhasan-api-progress-tracker/feed)WikiDiscussions main Synced 1mo ago

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

API Progress Tracker
====================

[](#api-progress-tracker)

A professional Laravel package for tracking API development progress with task management and team collaboration features.

🚀 Features
----------

[](#-features)

- **API Route Discovery**: Automatically discover and track API endpoints
- **Progress Tracking**: Monitor development status with customizable priorities
- **Task Management**: Create, assign, and track development tasks
- **Team Collaboration**: Developer management with comment system
- **Data Persistence**: Uses separate database to survive migrations
- **Beautiful UI**: Modern, responsive interface built with Tailwind CSS and Alpine.js
- **File Attachments**: Support for file uploads in comments
- **Mention System**: Tag team members in comments with notifications
- **Dashboard Analytics**: Visual progress tracking with charts and statistics

📋 Requirements
--------------

[](#-requirements)

- PHP 8.2+
- Laravel 12.0+
- Livewire 3.0+
- MySQL/PostgreSQL

🔧 Installation
--------------

[](#-installation)

### 1. Install via Composer

[](#1-install-via-composer)

```
composer require gmrakibulhasan/api-progress-tracker
```

### 2. Environment Setup

[](#2-environment-setup)

Add to your `.env` file:

```
# API Progress Tracker Database (separate from main app)
APIPT_DB_CONNECTION=mysql
APIPT_DB_HOST=127.0.0.1
APIPT_DB_PORT=3306
APIPT_DB_DATABASE=api_progress_tracker
APIPT_DB_USERNAME=root
APIPT_DB_PASSWORD=
```

### 3. Database Creation

[](#3-database-creation)

**Option A: Using MySQL CLI**

```
CREATE DATABASE api_progress_tracker;
```

**Option B: Using Laravel Tinker**

```
php artisan tinker
DB::statement('CREATE DATABASE api_progress_tracker');
exit
```

**Option C: Using Database Management Tool**Create a database named `api_progress_tracker` using phpMyAdmin, TablePlus, or your preferred tool.

### 4. Run Installation

[](#4-run-installation)

**Option A: Quick Install**

```
chmod +x vendor/gmrakibulhasan/api-progress-tracker/install.sh
./vendor/gmrakibulhasan/api-progress-tracker/install.sh
```

**Option B: Manual Install**

```
# Publish configuration
php artisan vendor:publish --provider="Gmrakibulhasan\ApiProgressTracker\ApiProgressTrackerServiceProvider"

# Run migrations on separate database
php artisan api-progress:migrate --fresh --seed

# Sync API routes
php artisan api-progress:sync-routes
```

🎯 Usage
-------

[](#-usage)

### Access Dashboard

[](#access-dashboard)

Visit: `http://yourapp.com/api-progress`

**Default Admin Login:**

- Email: `admin@apipt.com`
- Password: `password`

### Database Management

[](#database-management)

The package uses a **separate database connection** to isolate its data from your main application. This prevents conflicts and data loss during migrations.

#### Migration Commands

[](#migration-commands)

```
# Run migrations on separate database
php artisan api-progress:migrate

# Fresh migration with seeding
php artisan api-progress:migrate --fresh --seed

# Fresh migration only
php artisan api-progress:migrate --fresh
```

#### Database Configuration

[](#database-configuration)

The package automatically creates an `apipt` database connection using your `.env` settings:

```
APIPT_DB_CONNECTION=mysql
APIPT_DB_HOST=127.0.0.1
APIPT_DB_PORT=3306
APIPT_DB_DATABASE=api_progress_tracker
APIPT_DB_USERNAME=root
APIPT_DB_PASSWORD=
```

> **Note:** The package migrations will NOT interfere with your main application's `migrate:fresh --seed` commands.

### Available Commands

[](#available-commands)

#### Sync API Routes

[](#sync-api-routes)

```
# Sync all API routes
php artisan api-progress:sync-routes

# Sync specific group
php artisan api-progress:sync-routes --group=users

# Force sync (update existing)
php artisan api-progress:sync-routes --force
```

#### Validate Installation

[](#validate-installation)

```
# Check if everything is working correctly
php artisan api-progress:validate
```

This command will check:

- Database connection
- Table existence
- Model functionality
- Configuration
- Route registration

🎨 Features in Detail
--------------------

[](#-features-in-detail)

### Dashboard

[](#dashboard)

- Real-time progress tracking
- Visual analytics and charts
- API endpoint management
- Task assignment and tracking
- Comment system with file attachments

### API Management

[](#api-management)

- Automatic route discovery
- Manual API endpoint creation
- Priority and status tracking
- Developer assignment
- Progress monitoring

### Task Management

[](#task-management)

- Create and assign tasks
- Track completion status
- Comment system for collaboration
- File attachment support
- Mention system for notifications

🔧 Configuration
---------------

[](#-configuration)

All configuration options are available in the published config file:

```
php artisan vendor:publish --provider="Gmrakibulhasan\ApiProgressTracker\ApiProgressTrackerServiceProvider" --tag="config"
```

🤝 Contributing
--------------

[](#-contributing)

Contributions are welcome! Please feel free to submit a Pull Request.

📝 Changelog
-----------

[](#-changelog)

### v1.0.5

[](#v105)

- Cleaned up README documentation
- Final package optimization and documentation improvements
- Enhanced installation validation and error handling

### v1.0.4

[](#v104)

- Added separate database connection support
- Improved installation process with validation
- Enhanced error handling and user guidance
- Added comprehensive installation validation

### v1.0.3

[](#v103)

- Fixed migration and seeding issues
- Added custom migration commands
- Improved package stability

🐛 Troubleshooting
-----------------

[](#-troubleshooting)

### Database Connection Issues

[](#database-connection-issues)

1. Ensure the database exists:

    ```
    CREATE DATABASE api_progress_tracker;
    ```
2. Check your `.env` configuration
3. Run the validation command:

    ```
    php artisan api-progress:validate
    ```

### Migration Issues

[](#migration-issues)

If migrations fail, try:

```
php artisan api-progress:migrate --fresh --seed
```

📧 Support
---------

[](#-support)

For support, please open an issue on [GitHub](https://github.com/gmrakibulhasan/api-progress-tracker).

License
-------

[](#license)

MIT License

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance52

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity58

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

19

Last Release

332d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/27ad7ae7fa0fef129f84dc5feefa8137422877dbc8ea6fef6b92799b86b64205?d=identicon)[gmrakibulhasan](/maintainers/gmrakibulhasan)

---

Top Contributors

[![gmrakibulhasan](https://avatars.githubusercontent.com/u/67657081?v=4)](https://github.com/gmrakibulhasan "gmrakibulhasan (30 commits)")

---

Tags

apilaravellivewiretaskdashboardmanagementprogresstracker

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/gmrakibulhasan-api-progress-tracker/health.svg)

```
[![Health](https://phpackages.com/badges/gmrakibulhasan-api-progress-tracker/health.svg)](https://phpackages.com/packages/gmrakibulhasan-api-progress-tracker)
```

###  Alternatives

[darkaonline/l5-swagger

OpenApi or Swagger integration to Laravel

2.9k34.0M112](/packages/darkaonline-l5-swagger)[knuckleswtf/scribe

Generate API documentation for humans from your Laravel codebase.✍

2.3k12.2M45](/packages/knuckleswtf-scribe)[nickurt/laravel-postcodeapi

Universal PostcodeApi for Laravel 11.x/12.x/13.x

97221.2k](/packages/nickurt-laravel-postcodeapi)[mozex/anthropic-laravel

Anthropic PHP for Laravel is a supercharged PHP API client that allows you to interact with the Anthropic API

71226.4k1](/packages/mozex-anthropic-laravel)

PHPackages © 2026

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