Laravel-Parse
, (*1)
Laravel-Parse provides an Eloquent
way to use the Parse-SDK within your Laravel
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., (*2)
, (*3)
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?
Step-01: Composer
Use Composer from the command line and run:, (*4)
composer require sirthxalot/laravel-parse
Step-02: Service Provider
Open config/app.php
, and add a new item to the providers
array:, (*5)
'providers' => [
...
Sirthxalot\Parse\ParseServiceProvider::class,
...
]
This will bootstrap the Laravel-Parse package into your Laravel application., (*6)
Step-03: Setup Parse Driver
You can set your credentials and configuration in your .env
file:, (*7)
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., (*8)
Need Further Help
Please take a look at the official documentation,
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., (*9)
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.
Here you will find any tickets, questions and many more, related to Laravel-Parse., (*10)
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:, (*11)
License
The code is available under the MIT-License., (*12)