Download the PHP package robrogers3/laracastle without Composer

On this page you can find all versions of the php package robrogers3/laracastle. 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 laracastle

Laracastle

Latest Version on Packagist Total Downloads Build Status

Laracastle is a package that automates the installation and configuration of castle.io for your Laravel site.

What's Castle.io

Castle.io proactively protects your users from account hacking. When you subscribe to their service, they make intelligent decisions when users attempt to login to your site or access protected resources.

For more information, I recommend checking out their site.

Why Laracastle?

Castle.io is not difficult to integrate, but it does take some work.

With this package, you can integrate castle.io's services within minutes instead of hours or even days.

Installation

Via Composer

Configuration

Requirements

Laracastle pretty much depends on the Laravel Auth package. On Laravel 6, Auth is a separate package. So first install it. Without the Auth package you will have A LOT of work to do.

Then do one of these:

And, then of course run this:

Also if you plan to use Email Verification to protect important routes, which is recommended, you will need to configure the mail driver.

Initial Configuration

After you have required the package via composer, run:

Next, set up castle.io.

If you don't know your castle.io APP_ID or SECRET, then you need to sign up for castle.io.

Then, update update your .env files, like so:

When you are just starting out, set the CASTLE_MODE to 'evaluation'. Once you are ready to take action, change the CASTLE_MODE to 'production.'

Also, castle requires a HOME_ROUTE, which defaults to 'home', you can change this if your 'home' route changes.

Run the Automatic Install

To have Castle.io integrated in minutes just run this command:

NOTE: this will CLOBBER your User class and your AppServiceProvider.

Or, Install it Manually

Add this line to your main layouts blade file (e.g. app.blade.php) in the head section:

(Highly) Recommended Configuration Changes

Use "Email Verification" to protected your routes to greatly reduce your headaches!

By default, if castle.io challenges a login attempt then Laracastle will ask your user to login again, which can be a pain. A better alternative is to ensure users have verified their email address via the MustVerifyEmail interface.

To start, first learn about Laravel's Email Verification.

Next update your Auth routes in routes/web.php like so:

Then make sure your user implements 'MustVerifyEmail' and 'Laracastle\UserInterface'.

You will also need to add these two traits to your user model:

Your User class will look like this:

Lastly, protected routes that should be verified by email. Like so:

Optional but Recommended: Add this to your AppServiceProvider

When you are ready to go live.

First head over to Web Hooks on your Castle.io Dashboard.

And set two webhook end points:

  1. For the '$incident.confirmed' event add this endpoint:

  2. For the '$review.opened' event add this endpoint:

Do NOT select Subscribe to All Events for either endpoint.

Note the second webhook is recommended but optional.

Next, if you're feeling ambitious, style the review device page.

You can find it in:

Congrats you’re done. Your users are now protected by castle.io.

How It (Laracastle) Works?

Protecting Your User Accounts On Login

Laracastle hooks into several events dispatched by Laravel related to the user authentication processes. Like: Logging In, Logging Out, and Resetting Passwords. Most important is the Login Event.

When the Login Event is fired, Laracastle makes a realtime request to castle.io to determine if the request looks 'suspicious' or 'authentic'. And depending on the level of suspiciousness, it can either Allow the login, Challenge the login, or Deny the Login.

If the Login is allowed, then Laracastle proceeds as per usual.

If the Login is challenged, then we either ask the user to verify their email address, or request that they login again. (See config )

If the Login is denied, then we disallow Login, and then Laravel will take over to lock the account for a specified duration. Learn more about throttling requests on Laravel.com.

Proactively Protecting Your Accounts with Webhooks

When your account may have been compromised.

If Castle.io determines that an account may have been compromised, it sends a request to a webhook in Laracastle. Laracastle uses this information to reset the user's account password, and then notify them via email that their account may have been compromised and that they need to reset their password before they can access protected resources.

When unusual or suspicious devices access your account.

When castle.io believes there has been unusual or suspicious device activity accessing your account, it sends another webhook to Laracastle. Laracastle uses this information to notify the user of the activity, and asks them review it.

On clicking 'Review Device' from the notification, they are able to see the details of the activity. The user can either confirm it was valid activity, or report it as invalid. If it is valid, the suspicious activity is resolved, otherwise, the activity is escalated. When escalated the compromised webhook will be run, the account password will be reset, and the user will be notified via email.

Change log

Please see the changelog for more information on what has changed recently.

Testing

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email author email instead of using the issue tracker.

Credits

License

MIT License


All versions of laracastle with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version ~5|~6
castle/castle-php Version ^2.0
kitetail/zttp Version ^0.6.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 robrogers3/laracastle contains the following files

Loading the files please wait ....