Skip to content

v1.1.0

Compare
Choose a tag to compare
@3x1io 3x1io released this 16 Sep 11:50
· 12 commits to master since this release

List your package on the plugins list

you can list your package on the plugins list by adding this a json file in your package root folder with name module.json with content like this:

{
    "name": "FilamentAccounts",
    "alias": "filament-accounts",
    "description": {
        "ar": "full accounts manager with API\/Notifications\/Contacts to manage your contacts and accounts",
        "en": "full accounts manager with API\/Notifications\/Contacts to manage your contacts and accounts",
        "gr": "full accounts manager with API\/Notifications\/Contacts to manage your contacts and accounts",
        "sp": "full accounts manager with API\/Notifications\/Contacts to manage your contacts and accounts"
    },
    "keywords": [],
    "priority": 0,
    "providers": [
        "TomatoPHP\\FilamentAccounts\\FilamentAccountsServiceProvider"
    ],
    "files": [],
    "title": {
        "ar": "Filament Accounts",
        "en": "Filament Accounts",
        "gr": "Filament Accounts",
        "sp": "Filament Accounts"
    },
    "color": "#007dff",
    "icon": "heroicon-c-user-circle",
    "placeholder": "placeholder.webp",
    "type": "lib",
    "version": "v1.0",
    "github" : "https://github.com/tomatophp/filament-accounts",
    "docs" : "https://github.com/tomatophp/filament-accounts"
}

make sure you allow packages scan on the filament-plugins.php config file

'scan' => true

now you can publish your package as module with the very easy way use this command

php artisan filament-plugins:publish

and input your package name from the list and it will move it to your module folder and register the provider to you, so you can custom anything you like on the package.

Full Changelog: v1.0.15...v1.1.0