PHPackages                             sdksibig/sibigparking - 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. sdksibig/sibigparking

ActiveLibrary

sdksibig/sibigparking
=====================

Integrator To SibigParking

v0.1(9y ago)021MITPHPPHP &gt;=5.3.0

Since Oct 19Pushed 9y ago1 watchersCompare

[ Source](https://github.com/Abdulhmid/sibig-php-sdk)[ Packagist](https://packagist.org/packages/sdksibig/sibigparking)[ RSS](/packages/sdksibig-sibigparking/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

SDK SI BIG PARKING
==================

[](#sdk-si-big-parking)

sibigparking.com API Documentation
----------------------------------

[](#sibigparkingcom-api-documentation)

[API Doc](https://doc.sibigparking.com/)

Available API
-------------

[](#available-api)

- API Daftar Lokasi
- API Kirim Transaksi Tunggal
- API Kirim Transaksi Dalam Jumlah Banyak

Requirements
------------

[](#requirements)

- PHP &gt;=5.5
- Composer

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

[](#installation)

Disarankan menginstall SDK SI BIG PARKING dengan [Composer](https://getcomposer.org/). Composer adalah dependency management tool untuk PHP yang mengijinkan untuk mendeklarasiakan dependencies yang dibutuhkan di project anda.

```
    $ curl -sS https://getcomposer.org/installer | php
    $ mv composer.phar /usr/local/bin/composer

```

Anda dapat menambahkan SDK Sibig Parking Dependency dengan composer

```
    $ composer require sdksibig/sibigparking:v0.1

```

Alternatif cara lain, anda bisa memilih versi SDK Sibig Parking Dependency di dalam file composer.json di Project anda:

```
    {
       "require": {
          "sdksibig/sibigparking": "v0.1"
       }
    }

```

Setelah installing, anda membutuhkan untuk require Composer's autoloader:

```
    require_once __DIR__ . '/../vendor/autoload.php';

```

Atau bisa juga dengan menggunakan

```
use SibigParking\Parking;

```

Quick start
-----------

[](#quick-start)

```
    $siparking = new Parking(array(
      'id'  => 'Machine ID',
      'secret' => 'Machine Secret',
      'url' => 'url',
      'version' => 'v1',
    ));

```

Menggunakan Api Daftar Lokasi
-----------------------------

[](#menggunakan-api-daftar-lokasi)

- Format Penggunaan : ```
       $parking->getLocations($format)

    ```
- $format : ```
       JSON => "json" / XML => "xml"

    ```
- contoh : ```
       $parking->getLocations("json")

    ```
- Response

```
    {
       "locations": [
         {
           "location_id": "4d565e1a-bcff-4ae4-92d9-2a23cff67e27",
           "name": "Mall Bekasi Sumarecon",
           "address": "Jalan Boulevard Ahmad Yani Blok M",
           "city": "BEKASI"
         }
       ],
      "count": 1
    }

```

Menggunakan Api Kirim Transaksi Tunggal
---------------------------------------

[](#menggunakan-api-kirim-transaksi-tunggal)

- Format Penggunaan : ```
       $parking->singleTrans($location, $vehicle, $payment,$enter, $exit,$plate_number, $amount, $format);

    ```
- Format Data :

```
    $location => 4d565e1a-bcff-4ae4-92d9-2a23cff67e27
    $vehicle  => 1 "Keterangan = 1,Motor;2:Mobil;3:Lainnya"
    $payment  => 1 "Keterangan = 1,Tunai;2:Member;3:E-Money"
    $enter    => 2016-08-01 16:15:11
    $exit     => 2016-08-01 16:15:12
    $plate_number  => AD 4567 A
    $amount  => 2000
    $format  => 'json'

```

- contoh : ```
       $parking->singleTrans('4d565e1a-bcff-4ae4-92d9-2a23cff67e27',1,1,'2016-08-01 16:15:11','2016-08-01 16:15:12','AD 4567 A ',2000,'json')

    ```
- Response

```
    {
        "message": "Successfully add transaction."
    }

```

Menggunakan Api Kirim Transaksi Dalam Jumlah Banyak
---------------------------------------------------

[](#menggunakan-api-kirim-transaksi-dalam-jumlah-banyak)

- Format Penggunaan : ```
       $parking->multiTrans($transactions, $format)

    ```
- Format Data:
    - $trans = Array Json
    - $format = xml/json
- Contoh data $trans

```
        [
           {
              "location":"4d565e1a-bcff-4ae4-92d9-2a23cff67e27",
              "vehicle":1,
              "payment":1,
              "enter":"2016-08-03 16:15:11",
              "exit":"2016-08-03 19:15:12",
              "plate_number":"2222",
              "amount":"2000"
           },
           {
              "location":"4d565e1a-bcff-4ae4-92d9-2a23cff67e27",
              "vehicle":1,
              "payment":1,
              "enter":"2016-08-03 16:15:11",
              "exit":"2016-08-03 18:15:12",
              "plate_number":"2222",
              "amount":"2000"
           }
        ]

```

- contoh : ```
       $parking->multiTrans($trans,"json")

    ```
- Response

```
    {
        "message": "Successfully add transactions.",
        "sent": 2,
        "succeed": 1,
        "failed": 1
    }

```

TODO
----

[](#todo)

- English documentation.

License
-------

[](#license)

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

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

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

Unknown

Total

1

Last Release

3491d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c234ec3347a409d7748d5f4aa233b917cebff237549a5ae31c05c9ae530fc75f?d=identicon)[Abdulhmid](/maintainers/Abdulhmid)

### Embed Badge

![Health badge](/badges/sdksibig-sibigparking/health.svg)

```
[![Health](https://phpackages.com/badges/sdksibig-sibigparking/health.svg)](https://phpackages.com/packages/sdksibig-sibigparking)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

1.8k245.3k20](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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