Refine for Laravel
A package by Hammerstone

Installation

Refine is a paid package. To purchase, head to hammerstone.dev.

Because Refine is a private package, it is hosted on unlock.sh instead of packagist.org.

You'll need to add a section called "repositories" to your composer.json file:

{
"require": {
// ...
},
"repositories": [
{
"type": "composer",
"url": "https://refine.composer.sh"
}
],
"config": {
// ...
}
}

You can see the exact configuration you need in your Unlock portal.

You will also need to set up composer authentication. The easiest way to do that is by creating an auth.json file in the same directory as your composer.json file.

{
"http-basic": {
"refine.composer.sh": {
"username": "[email]",
"password": "[enter your token]"
}
}
}
Code highlighting powered by torchlight.dev, a Hammerstone product.

Again, you can see the exact configuration needed in your Unlock portal.

Now all you need to do is composer require hammerstone/refine-laravel.