Smart Report Engine supports two convenient methods for its installation in a native PHP application based on your preferences. You can choose to install Smart Report Engine using Composer, a popular dependency management tool for PHP projects. Alternatively, if you prefer not to use Composer, we also provide a manual installation method. Regardless of the method you choose, Smart Report Engine is designed to seamlessly integrate into your workflow and provide you with powerful reporting capabilities.
"repositories": [
{
"type": "path",
"url": "SmartReportingEngine"
}
],
ii. Include sre/sre to your list of required packages, as follows:
"require": {
"sre/sre": "*"
}
iii. Include the configuration file of smart report engine to the list of the autoload files, as follows:
"autoload": {
"files": ["sre_config/config.php"]
}
Composer update
composer dump-autoload
"repositories": [
{
"type": "path",
"url": "sre"
}
],
"require": {
"sre/sre": "*"
}
'providers' = [
Sre\SmartReportingEngine\src\Providers\SmartEngineServiceProvider::class,
]
Composer update
php artisan vendor:publish --provider="Sre\SmartReportingEngine\src\Providers\SmartEngineServiceProvider"
composer dump-autoload