ROOTM365.psd1

@{

RootModule = 'ROOTM365.psm1'

ModuleVersion = '1.0.1'

GUID = '9f2f9b68-7a21-4c4f-9b1c-0d7f7a4a1d22'

Author = 'Omar Ouennich'

CompanyName = 'Independent Security Research'

Copyright = '(c) Omar Ouennich. All rights reserved.'

Description = 'ROOT365 is a PowerShell-based audit framework implementing CIS Microsoft 365 Foundations Benchmark v6.0.1 controls.'

PowerShellVersion = '7.0'

FunctionsToExport = @(
    'Invoke-ROOT365Audit'
)

CmdletsToExport = @()

VariablesToExport = '*'

AliasesToExport = @()

FileList = @(
'ROOTM365.psm1',
'root365.ps1'
)

PrivateData = @{

    PSData = @{

        Tags = @(
        'Microsoft365'
        'M365'
        'CIS'
        'Security'
        'Audit'
        'Compliance'
        'EntraID'
        'ExchangeOnline'
        'Teams'
        'SharePoint'
        'Defender'
        'Purview'
        'Intune'
        )

        ProjectUri = 'https://github.com/Omarouennich/ROOTM365'

        LicenseUri = 'https://github.com/Omarouennich/ROOTM365/blob/main/LICENSE'

        ReleaseNotes = 'ROOTM365 CIS Microsoft 365 Benchmark automation framework.'

    }

}

}