OrgManager component for Spatie's Dashboard
This package adds an OrgManager Statistics tile similar to the Packagist Statistics to Spatie's Dashboard.
You can install this package via composer using this command:
composer require orgmanager/orgmanager-dashboard
Next, you must install the service provider:
// config/app.php
'providers' => [
...
OrgManager\Dashboard\OrgManagerDashboardServiceProvider::class,
];
then, publish the assets&config using this command:
php artisan vendor:publish --tag=orgmanager-dashboard/assets --force
php artisan vendor:publish --tag=orgmanager-dashboard/config --force
php artisan vendor:publish --tag=orgmanager-dashboard/commands --force
you also have to add your OrgManager token to the .env
file
// .env
...
ORGMANAGER_TOKEN=your-token-here
...
Finally, re-generate assets:
yarn && yarn run dev
Please see CHANGELOG.md for more information on what has changed recently.
Read our CONTRIBUTING.md for more details on how to help us.
If you find any security related issues, please send an email to [email protected] instead of using the issue tracker.
This package is licensed under the Mozilla Public License ("MPL"). Please see LICENSE.md for more information.