Installation ============ This installation guide is straight forward. Use `Composer `_ in order to install the dependency, set the service provider, set the configuration and call it the day! This guide is meant to install Laravel-Parse for Laravel 5.3.*. Step-01: Download Source ------------------------ Use Composer to install the Laravel-Parse dependency, by executing the following command: .. code-block:: bash composer require sirthxalot/laravel-parse:"1.0.*" Step-02: Service Provider ------------------------- Open `config/app.php`, and add a new item to the `providers` array: .. code-block:: php 'providers' => [ ... Sirthxalot\Parse\ParseServiceProvider::class, ... ] Step-03: Parse Configuration ---------------------------- The setup can be done within your dotenv (`.env`) configuration file: .. code-block:: dotenv PARSE_APP_ID="your_app_id" PARSE_REST_KEY="your_rest_key" PARSE_MASTER_KEY="your_master_key" PARSE_SERVER_URL="http://localhost:1337" PARSE_MOUNT_PATH="/parse"