Download the PHP package stormpath/laravel without Composer

On this page you can find all versions of the php package stormpath/laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel

Build Status Codecov Latest Stable Version Latest Unstable Version License

Stormpath is Joining Okta

We are incredibly excited to announce that Stormpath is joining forces with Okta. Please visit the Migration FAQs for a detailed look at what this means for Stormpath users.

We're available to answer all questions at [email protected].

Getting Started

Follow these steps to add Stormpath user authentication to your Laravel app.

  1. Download Your Key File

    Download your key file from the Stormpath Console.

  2. Store Your Key As Environment Variables

    Open your key file and grab the API Key ID and API Key Secret, then add this to your .env file in the root of your project:

  3. Get Your Stormpath App HREF

    Login to the Stormpath Console and grab the HREF (called REST URL in the UI) of your Application. It should look something like this:

    https://api.stormpath.com/v1/applications/q42unYAj6PDLxth9xKXdL

  4. Store Your Stormpath App HREF In the .env file

  5. Install The Package

    Open your composer.json file and add the following to your require block:

  6. Include It In Your App

    Open you config/app.php file and add the following to your providers section

  7. Configure It

    To modify the configuration of the package, you will need to publish the config file. Run the following in your terminal:

  8. Protect Your Routes

    You can use stormpath.auth as a middleware to protect your routes:

    If the user tries to access this route without being logged in, they will be redirected to the login page.

    If you want to make sure ONLY guests can use the route, You can use stormpath.guest as a middleware:

    If the user tries to access this route while logged in, they will be redirected to the home page.

  9. Login

    To access a protected route, the user must first login.

    You can login by visiting the /login URL and submitting the login form.

  10. Register

    To be able to login, your users first need an account.

    Users can register by visiting the /register URL and submitting the registration form.

  11. That's It!

    You just added user authentication to your app with Stormpath. See the documentation for further information on how Stormpath can be used with your Laravel app.

Documentation

For basic documentation of this library, see the documentation.

Support

If you are having issues with this package, please feel free to submit an issue on this github repository. If it is an issue you are having that needs a little more private attention, please feel free to contact us at [email protected] or visit our support center.

Contributing

We welcome anyone to make contributions to this project. Just fork the develop branch of this repository, make your changes, then issue a pull request on the develop branch.

Any pull request you make will need to have associated tests with them. If a test is not provided, the pull request will be closed automatically. Also, any pull requests made to a branch other than develop will be closed and a new submission will need to be made to the develop branch.

We regularly maintain this repository, and are quick to review pull requests and accept changes!

Copyright

Copyright © 2013-2015 Stormpath, Inc. and contributors.

This project is open-source via the Apache 2.0 License.


All versions of laravel with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5
stormpath/sdk Version ~1.14
illuminate/http Version ~5.1|~5.2
illuminate/routing Version ~5.1|~5.2
illuminate/validation Version ~5.1|~5.2
illuminate/support Version ~5.1|~5.2
bretterer/iso_duration_converter Version ^0.1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package stormpath/laravel contains the following files

Loading the files please wait ....