PHPackages                             sirthxalot/laravel-parse - 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. [Framework](/categories/framework)
4. /
5. sirthxalot/laravel-parse

AbandonedLibrary[Framework](/categories/framework)

sirthxalot/laravel-parse
========================

A Parse-SDK bridge for Laravel applications.

v1.1.3(9y ago)61.5k3MITPHPPHP &gt;=5.6.4

Since Jan 25Pushed 8y ago1 watchersCompare

[ Source](https://github.com/sirthxalot/laravel-parse)[ Packagist](https://packagist.org/packages/sirthxalot/laravel-parse)[ RSS](/packages/sirthxalot-laravel-parse/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

Laravel-Parse
=============

[](#laravel-parse)

[![Chat](https://camo.githubusercontent.com/e706db78a656961693101176120069a98dfc9baaa26d5b591e03416e3371bcd9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636861742d6a6f696e2d6f72616e67652e737667)](https://sirthxalot.slack.com/messages/laravel-parse/)[![Read the docs](https://camo.githubusercontent.com/5f449faaff88690864dbeb85b4f53a67ca9bc89cf8d381e57813042903aaa2e7/68747470733a2f2f72656164746865646f63732e6f72672f70726f6a656374732f6c61726176656c2d70617273652f62616467652f3f76657273696f6e3d6c6174657374)](http://laravel-parse.readthedocs.io/en/latest/)[![GitHub issues](https://camo.githubusercontent.com/73dc4012dc65c1e58858a0b2bb1f5385559d43a619dc32154f1cd8446f35b466/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f736972746878616c6f742f6c61726176656c2d70617273652e737667)](https://github.com/sirthxalot/laravel-parse/issues)[![GitHub forks](https://camo.githubusercontent.com/d464729989040fb58613a65970ab4c2b1fbc8dcaf71576cdf1c3e481e64698d9/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f736972746878616c6f742f6c61726176656c2d70617273652e7376673f7374796c653d736f6369616c266c6162656c3d466f726b266d61784167653d32353932303030)](https://github.com/sirthxalot/laravel-parse)[![GitHub stars](https://camo.githubusercontent.com/a4a194e592afba008afd676594c2780ecad7d76c55ebd5b2be9c1f28fbddb4f1/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f736972746878616c6f742f6c61726176656c2d70617273652e7376673f7374796c653d736f6369616c266c6162656c3d53746172266d61784167653d32353932303030)](https://github.com/sirthxalot/laravel-parse)

[Laravel-Parse](https://github.com/sirthxalot/laravel-parse) provides an Eloquent way to use the [Parse-SDK](https://parse.com/) within your [Laravel](https://laravel.com/)application. It takes the yawn out of writing queries, by using the good old Eloquent and Collection features. Couple your application with Parse and enjoy all the goodies, like the authentication service and many more ready to use straight out of box.

[![Laravel 5.3 Support](https://camo.githubusercontent.com/8260bbaa4e89c7115ad2c80ec070c9c8a23de1ac0b10d7b8fb926d0843faaa0b/687474703a2f2f6c61726176656c2d70617273652e72656164746865646f63732e696f2f656e2f6c61746573742f5f696d616765732f6c61726176656c2d70617273652e706e67)](https://camo.githubusercontent.com/8260bbaa4e89c7115ad2c80ec070c9c8a23de1ac0b10d7b8fb926d0843faaa0b/687474703a2f2f6c61726176656c2d70617273652e72656164746865646f63732e696f2f656e2f6c61746573742f5f696d616765732f6c61726176656c2d70617273652e706e67)

Features
--------

[](#features)

- Instant use of the Parse-SDK without initializing;
- Use Eloquent features, in order to interact with your Parse driver;
- Use Laravel's relationship in combination with your Parse driver;
- Use Laravel's authentication service using username and password verification;
- Artisan command to create new `ObjectModel`s (Parse classes).

How to install?
---------------

[](#how-to-install)

### Step-01: Composer

[](#step-01-composer)

Use [Composer](https://getcomposer.org) from the command line and run:

```
composer require sirthxalot/laravel-parse
```

### Step-02: Service Provider

[](#step-02-service-provider)

Open `config/app.php`, and add a new item to the `providers` array:

```
'providers' => [
    ...
    Sirthxalot\Parse\ParseServiceProvider::class,
    ...
]
```

This will bootstrap the Laravel-Parse package into your Laravel application.

### Step-03: Setup Parse Driver

[](#step-03-setup-parse-driver)

You can set your credentials and configuration in your `.env` file:

```
PARSE_APP_ID="your-app-id"
PARSE_REST_KEY="your-rest-key"
PARSE_MASTER_KEY="your-master-key"
PARSE_SERVER_URL="https://api.parse.com/"
PARSE_MOUNT_PATH="/parse"
```

You will find your credentials within your **Parse dashboard**.

Need Further Help
-----------------

[](#need-further-help)

Please take a look at the [official documentation](https://sta-books.gitbooks.io/laravel-parse/content/), in order to receive further information about the Laravel-Parse. It will guide you through all the basics and is the defacto educational resource specifically for any beginner.

If you have a question, want to report any bug or have any other issue, than please do not hesitate to use the [issue tracker](https://github.com/sirthxalot/laravel-parse/issues). Here you will find any tickets, questions and many more, related to Laravel-Parse.

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

[](#contributing)

Yet just me helped to get Laravel-Parse what it is today, so lets change this. Anyone and everyone is welcome to contribute, however, if you decide to get involved, please take a moment to review the guidelines:

- [Bug reports](contributing.md#bug-reports)
- [Feature requests](contributing.md#feature-requests)
- [Pull requests](contributing.md#pull-requests)
- [GitFlow](contributing.md#the-gitflow-workflow)

License
-------

[](#license)

The code is available under the [MIT-License](license.md).

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity59

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 ~12 days

Total

2

Last Release

3431d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/6856248?v=4)[Alexander Bösch](/maintainers/sirthxalot)[@sirthxalot](https://github.com/sirthxalot)

---

Top Contributors

[![sirthxalot](https://avatars.githubusercontent.com/u/6856248?v=4)](https://github.com/sirthxalot "sirthxalot (3 commits)")

---

Tags

frameworklaravelparseBridgeparse-sdkLaravel ParseParseSDKparse bridgeparse sdk bridge

### Embed Badge

![Health badge](/badges/sirthxalot-laravel-parse/health.svg)

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

###  Alternatives

[laravel/laravel

The skeleton application for the Laravel framework.

84.6k62.4M1.0k](/packages/laravel-laravel)[laravel-parse/parse

Parse Is A Parse SDK Bridge For Laravel 5

1177.6k](/packages/laravel-parse-parse)[unopim/unopim

UnoPim Laravel PIM

10.5k2.2k](/packages/unopim-unopim)[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3911.7k](/packages/codewithdennis-larament)[kompo/kompo

Laravel &amp; Vue.js FullStack Components for Rapid Application Development

11914.4k42](/packages/kompo-kompo)

PHPackages © 2026

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