A Laravel package for the Adapty SDK. Please feel free to contribute...
You can install the package via composer:
composer require mberatsanli/laravel-adapty
You can publish the config file with:
php artisan vendor:publish --tag="adapty-config"
This is the contents of the published config file:
return [
'base_url' => env('ADAPTY_BASE_URL', 'https://api.adapty.io/api/v1/sdk'),
'secret_token' => env('ADAPTY_SECRET_TOKEN'), // Your adapty secret token.
'webhook' => [
'path' => env('ADAPTY_WEBHOOK_PATH', '/adapty/webhook'), // webhook endpoint's path
'middleware' => [] // If you want to use middleware on the webhook endpoint, you can adjust that configuration
],
];
// Create a user
$createResponse = \MBS\LaravelAdapty\LaravelAdapty::createUser('<USER ID>');
// Get information about the user
$informationResponse = \MBS\LaravelAdapty\LaravelAdapty::userInformation('<USER ID -- OR -- Adapty Profile ID>');
// Set attributes to the user
$setAttributesResponse = \MBS\LaravelAdapty\LaravelAdapty::setUserAttributes('<USER ID -- OR -- Adapty Profile ID>', [
// see https://docs.adapty.io/docs/server-side-api-specs#set-the-users-attribute
]);
// see https://docs.adapty.io/docs/getting-started-with-server-side-api#case-2-grant-a-subscription
$grantRequest = \MBS\LaravelAdapty\Http\Requests\GrantSubscriptionRequest::make(7, ....);
$grantResponse = \MBS\LaravelAdapty\LaravelAdapty::grantSubscription('<USER ID -- OR -- Adapty Profile ID>', $grantRequest);
// See https://docs.adapty.io/docs/server-side-api-specs#revoke-subscription-from-a-user
$revokeSubscriptionResponse = \MBS\LaravelAdapty\LaravelAdapty::revokeSubscription(profileId: '<USER ID -- OR -- Adapty Profile ID>', accessLevel: 'premium', isRefund: <bool>)
No tests available for now
composer test
Please see CHANGELOG for more information on what has changed recently.
Please feel free to contributing...
The MIT License (MIT). Please see License File for more information.