All Projects → LaravelParse → Laravel Parse

LaravelParse / Laravel Parse

Licence: mit
A Parse SDK bridge for Laravel 5

Projects that are alternatives of or similar to Laravel Parse

Cve Api
Unofficial api for cve.mitre.org
Stars: ✭ 36 (-68.97%)
Mutual labels:  self-hosted, parse, real-time
Chatify
A Laravel package that allows you to add a complete user messaging system into your new/existing Laravel application.
Stars: ✭ 885 (+662.93%)
Mutual labels:  laravel, library, real-time
Rnl
RNL - Realtime Network Library - The opensource reliable UDP network library
Stars: ✭ 59 (-49.14%)
Mutual labels:  server, real-time, realtime
Gophergameserver
🏆 Feature packed, easy-to-use game server API for Go back-ends and Javascript clients. Tutorials and examples included!
Stars: ✭ 61 (-47.41%)
Mutual labels:  server, real-time
Mangapie
This is a self-hosted server for archived manga.
Stars: ✭ 51 (-56.03%)
Mutual labels:  self-hosted, laravel
Notifier
NO LIBRARIES socket per page bridge for your Laravel application. (CLIENT PART INCLUDED)
Stars: ✭ 57 (-50.86%)
Mutual labels:  laravel, real-time
Goodwork
Self hosted project management and collaboration tool powered by TALL stack
Stars: ✭ 1,730 (+1391.38%)
Mutual labels:  self-hosted, laravel
Oblecto
Oblecto is a media server, which streams media you already own, and is designed to be at the heart of your entertainment experience. It runs on your home server to index and analyze your media such as Movies and TV Shows and presents them in an interface tailored for your media consupmtion needs.
Stars: ✭ 67 (-42.24%)
Mutual labels:  self-hosted, real-time
Xsrv
[mirror] Install and manage self-hosted services/applications, on your own server(s) - ansible collection and utilities
Stars: ✭ 89 (-23.28%)
Mutual labels:  self-hosted, server
Rtmlton
MLton with Realtime GC and Threading features
Stars: ✭ 98 (-15.52%)
Mutual labels:  real-time, realtime
Sandstone
PHP microframework designed to build a RestApi working together with a websocket server. Build a real time RestApi!
Stars: ✭ 98 (-15.52%)
Mutual labels:  real-time, realtime
Ts3admin.class
The ts3admin.class is a powerful api for communication with Teamspeak 3 Servers from your website! Your creativity knows no bounds!
Stars: ✭ 103 (-11.21%)
Mutual labels:  library, server
Docker Serveo Server
https://serveo.net is an alternative for ngrok. taichunmin/serveo-server can let you host your own serveo. And taichunmin/serveo can let you secure URL to your localhost server through any NAT or firewall in Docker.
Stars: ✭ 44 (-62.07%)
Mutual labels:  self-hosted, server
Convergence Server
The Convergence Server
Stars: ✭ 44 (-62.07%)
Mutual labels:  server, realtime
Lara Eye
Filter your Query\Builder using a structured query language
Stars: ✭ 39 (-66.38%)
Mutual labels:  laravel, library
Socketcluster Server
Minimal server module for SocketCluster
Stars: ✭ 70 (-39.66%)
Mutual labels:  server, realtime
Sod
An Embedded Computer Vision & Machine Learning Library (CPU Optimized & IoT Capable)
Stars: ✭ 1,460 (+1158.62%)
Mutual labels:  library, real-time
Realtime Newsapi
Financial News Aggregator - Real Time & Query API for Financial News
Stars: ✭ 34 (-70.69%)
Mutual labels:  real-time, realtime
Rtb
Benchmarking tool to stress real-time protocols
Stars: ✭ 35 (-69.83%)
Mutual labels:  real-time, realtime
Cocsharp
Clash of Clans library, proxy and server written in .NET [Unmaintained]
Stars: ✭ 94 (-18.97%)
Mutual labels:  library, server

Laravel Parse

Laravel Parse is currently maintained by Prosper Otemuyiwa, and is a Parse SDK bridge for Laravel 5. Feel free to check out the change log, releases, license, and contribution guidelines.

StyleCI Status Build Status Software License Latest Version

Installation

Either PHP 5.5+ or HHVM 3.6+ are required.

To get the latest version of Laravel Parse, simply require the project using Composer:

$ composer require laravel-parse/parse

Instead, you may of course manually update your require block and run composer update if you so choose:

{
    "require": {
        "laravel-parse/parse": "^3.0"
    }
}

Once Laravel Parse is installed, you need to register the service provider. Open up config/app.php and add the following to the providers key.

  • 'LaravelParse\Parse\ParseServiceProvider'

Configuration

Laravel Parse requires configuration. To get started, you'll need to publish all vendor assets:

$ php artisan vendor:publish --provider="LaravelParse\Parse\ParseServiceProvider"

This will create a config/parse.php file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases.

There are five config options:

Parse App Id

This option ('app_id') is where you may specify your parse app id. The default value for this setting is 'your-app-id'.

Parse Rest Key

This option ('rest_key') is where you may specify your parse rest key. The default value for this setting is 'your-rest-key'.

Parse Master Key

This option ('master_key') is where you may specify your parse master key. The default value for this setting is 'your-master-key'.

Parse Server URL

This option ('server_url') is where you may specify your parse server url. The default value for this setting is 'https://api.parse.com/'.

Parse Mount Point

This option ('mount_point') is where you may specify your parse mount point. The default value for this setting is '1'.

Parse Session Handler

This option ('session') is where you may specify your parse session handler. The default value for this setting is 'laravel'.

Usage

This package is only responsible for the automatic initialisation of the parse client. See the parse docs at https://github.com/ParsePlatform/parse-php-sdk.

Security

If you discover a security vulnerability within this package, please send an e-mail to Prosper Otemuyiwa at [email protected]. All security vulnerabilities will be promptly addressed.

License

Laravel Parse is licensed under The MIT License (MIT).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].