├── .gitignore ├── registration.php ├── etc ├── adminhtml │ ├── routes.xml │ ├── di.xml │ ├── menu.xml │ └── system.xml ├── crontab.xml ├── module.xml ├── email_templates.xml ├── config.xml └── acl.xml ├── view └── adminhtml │ ├── layout │ ├── sansec_composer_integrity_checker_index_index.xml │ └── sansec_composer_integrity_checker_failure_items_email.xml │ ├── email │ └── sansec-composer-integrity-check-failure.html │ ├── hyva-grid │ └── sansec-composer-integrity-results-grid.xml │ └── templates │ └── email │ └── failure-list.phtml ├── Block └── Adminhtml │ └── Form │ └── Field │ ├── IgnoredPackages.php │ └── ComposerIntegrityNotificationEmailRecipients.php ├── composer.json ├── Controller └── Adminhtml │ ├── Index │ └── Index.php │ └── Scan │ └── Run.php ├── Service ├── Scanner.php └── EmailNotifier.php ├── Model ├── System │ └── Message │ │ └── PackageBelowThreshold.php └── IntegrityResultsRegistry.php ├── Cron └── Scan.php ├── Scope └── Config.php ├── README.md └── LICENSE.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- 1 | 2 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /etc/crontab.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 10 | 11 | 14 | 0 * * * * 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /view/adminhtml/layout/sansec_composer_integrity_checker_index_index.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /etc/email_templates.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 10 |