Thanks for jumping in to help! it's a server side boot error when loading and can't find the class: Error: Class "CustomApi\Providers\CustomApiServiceProvider" not found
What I've done so far:
checked the file structure to make sure it's correct
ran composer dump-autoload/cache clear
checked autoloading in composer.json
//--------------------------------
//extend.php
<?php
use Flarum\Extend;
use CustomApi\Controllers\LoginController;
use CustomApi\Providers\CustomApiServiceProvider;
return [
(new Extend\Routes('api'))
->post('/neoncrm/login', 'neoncrm.login', LoginController::class),
(new Extend\ServiceProvider())
->register(CustomApiServiceProvider::class),
];
//---------------------------------------------
//CustomApiServiceProvider.php
<?php
namespace CustomApi\Providers;
use Flarum\Foundation\AbstractServiceProvider;
use CustomApi\Services\NeonCRMService;
class CustomApiServiceProvider extends AbstractServiceProvider
{
public function register()
{
$this->container->bind(NeonCRMService::class, function () {
return new NeonCRMService();
});
}
}
//-----------------------------------------------
//composer.json
{
"name": "custom/api",
"description": "Custom API for integrating Flarum login with NeonCRM.",
"type": "flarum-extension",
"require": {
"flarum/core": "^1.8",
"guzzlehttp/guzzle": "^7.0"
},
"autoload": {
"psr-4": {
"CustomApi\\": "custom_api/src/"
}
},
"autoload-dev": {
"psr-4": {
"CustomApi\\Tests\\": "custom_api/tests/"
}
},
"extra": {
"flarum-extension": {
"title": "Login Integration for NeonCRM",
"icon": {
"name": "fas fa-link",
"backgroundColor": "#2E86C1",
"color": "#FFFFFF"
}
}
},
"flarum": {
"serviceProvider": "CustomApi\\Providers\\CustomApiServiceProvider"
}
}