PHPackages                             tiitoo/parse-bundle - 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. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. tiitoo/parse-bundle

ActiveSymfony-bundle[Parsing &amp; Serialization](/categories/parsing)

tiitoo/parse-bundle
===================

AdadgioParseBundle

06PHP

Since Apr 13Pushed 9y ago1 watchersCompare

[ Source](https://github.com/TiiToo/parse-bundle)[ Packagist](https://packagist.org/packages/tiitoo/parse-bundle)[ RSS](/packages/tiitoo-parse-bundle/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependenciesVersions (1)Used By (0)

AdadgioParseBundle
==================

[](#adadgioparsebundle)

Set set of helper to pass HTTP complex queries and convert them easily to query repositories

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

[](#installation)

Install with composer.

`composer require adadgio/parse-bundle`

Make the following change to your `AppKernel.php` file to the registered bundles array.

```
new Adadgio\ParseBundle\AdadgioParseBundle(),

```

### Requirements

[](#requirements)

This bundles required `FosUserBundle`, `AdadgioGearBundle` and `AdadgioDQLBundle`. But don't worry, thats automatic during a composer install.

### Import routing files

[](#import-routing-files)

```
// add routing
_adadgio_parse:
    resource: "@AdadgioParseBundle/Resources/config/routing.yml"
```

### Create base classes

[](#create-base-classes)

Create an installation entity like this.

```
namespace AppBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Adadgio\ParseBundle\Entity\ParseInstallation;

/**
 * @ORM\Table(name="my_installation")
 * @ORM\Entity(repositoryClass="AppBundle\Repository\MyInstallationRepository")
 */
class MyInstallation extends ParseInstallation
{
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Up to you, but could be nice to link the installs with your users.
     * Dont forget to edit the relationshipon the user owning side as well.
     *
     * ORM\ManyToOne(targetEntity="AppBundle\Entity\User", inversedBy="installations")
     * ORM\JoinColumn(name="user_id", referencedColumnName="id", nullable=true)
     */
    private $user;
}
```

Configuration reference
-----------------------

[](#configuration-reference)

```
adadgio_parse:

    # the identity of your parse app
    # static api key auth
    application:
        client_id: anyTokenuLike
        client_key: anysEkreTY0liKe
        client_config: # optional, equivalent to parse config feature
            host: test-host.com
            protocol: test
            version: 1.1

    # misc config for external links in api returns
    miscellaneous:
        protocol: http://
        hostname: adadgio.dev

    # parse bundle internal and database settings
    settings:
        #field_prefix: m_ # optional, default null
        #never_prefixed: [ "email", "password" ] # optional, default [ "email", "password" ]
        #serialization:
            #hidden: ["password", "salt"]  # optional, defaults, when results are send from parse
        #conversion:
            #reserved: ["id", "objectId", "password", "salt", "email", "username", "confirmation_token"]  # optional, default, when results are received from parse
        #installation:
            #class: ~ # optional, default AppBundle\Entity\MyParseInstallation (if you wish to extend the install class)

    # your entities mapping(s)
    mapping:
        product:
            class: AppBundle\Entity\Product
            fields:
                id: ~ 
                name: ~ 
```

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 58.8% 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://avatars.githubusercontent.com/u/4389101?v=4)[TiiToo](/maintainers/TiiToo)[@TiiToo](https://github.com/TiiToo)

---

Top Contributors

[![adadgio](https://avatars.githubusercontent.com/u/502070?v=4)](https://github.com/adadgio "adadgio (10 commits)")[![TiiToo](https://avatars.githubusercontent.com/u/4389101?v=4)](https://github.com/TiiToo "TiiToo (7 commits)")

### Embed Badge

![Health badge](/badges/tiitoo-parse-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/tiitoo-parse-bundle/health.svg)](https://phpackages.com/packages/tiitoo-parse-bundle)
```

###  Alternatives

[mtdowling/jmespath.php

Declaratively specify how to extract elements from a JSON document

2.0k472.8M135](/packages/mtdowling-jmespathphp)[opis/closure

A library that can be used to serialize closures (anonymous functions) and arbitrary data.

2.6k230.0M284](/packages/opis-closure)[masterminds/html5

An HTML5 parser and serializer.

1.8k242.8M229](/packages/masterminds-html5)[sabberworm/php-css-parser

Parser for CSS Files written in PHP

1.8k191.2M65](/packages/sabberworm-php-css-parser)[michelf/php-markdown

PHP Markdown

3.5k52.4M345](/packages/michelf-php-markdown)[jms/metadata

Class/method/property metadata management in PHP

1.8k152.8M88](/packages/jms-metadata)

PHPackages © 2026

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