spacejewel-ipn-communication/public/index.php

27 lines
579 B
PHP

<?php
require $_SERVER['DOCUMENT_ROOT'] . '/vendor/autoload.php';
$App = new \Slim\App([
"settings" =>
[
"displayErrorDetails" => true
]
]);
$App->post
(
"/api/paddle/{authkey}/detectIntent",
Hookmanager::class, ':detectPayloadIntent'
);
$App->post
(
"/api/paddle/{authkey}/hook",
Hookmanager::class, ':EventSubscriptionCreatead'
);
$App->run();