PHPackages                             aedart/athenaeum-antivirus - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Security](/categories/security)
4. /
5. aedart/athenaeum-antivirus

ActiveLibrary[Security](/categories/security)

aedart/athenaeum-antivirus
==========================

Antivirus scanner for Laravel

9.25.1(2mo ago)06.2k↓50%BSD-3-ClausePHPPHP ^8.3

Since Mar 1Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/aedart/athenaeum-antivirus)[ Packagist](https://packagist.org/packages/aedart/athenaeum-antivirus)[ Docs](https://aedart.github.io/athenaeum/)[ RSS](/packages/aedart-athenaeum-antivirus/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (12)Versions (91)Used By (0)

Athenaeum Antivirus
===================

[](#athenaeum-antivirus)

The Antivirus package provides a "profile-based" approach for scanning files for infections, such as viruses, malware or other harmful code.

```
use Aedart\Antivirus\Facades\Antivirus;

$result = Antivirus::scan($file);

if (!$result->isOk()) {
    // File may contain harmful code... do something!
}
```

The package also comes with a default validation rule, to prevent upload of infected files.

```
use Aedart\Antivirus\Validation\Rules\InfectionFreeFile;
use Illuminate\Support\Facades\Route;
use Illuminate\Http\Request;

Route::post('/pictures', function (Request $request) {
    $request->validate([
        'picture' => [
            'required',
            'file',
            new InfectionFreeFile()
        ]
    ]);

    $file = $request->file('picture');

    // ... do something with uploaded file...
});
```

Supported Scanners
------------------

[](#supported-scanners)

- [ClamAV](https://www.clamav.net/)
- Null Scanner (*for testing purposes*)
- (*Your custom scanner*)

Documentation
-------------

[](#documentation)

Please read the [official documentation](https://aedart.github.io/athenaeum/) for additional information.

Repository
----------

[](#repository)

The mono repository is located at [github.com/aedart/athenaeum](https://github.com/aedart/athenaeum)

Versioning
----------

[](#versioning)

This package follows [Semantic Versioning 2.0.0](http://semver.org/)

License
-------

[](#license)

[BSD-3-Clause](http://spdx.org/licenses/BSD-3-Clause), Read the LICENSE file included in this package

###  Health Score

52

—

FairBetter than 96% of packages

Maintenance86

Actively maintained with recent releases

Popularity23

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity76

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~12 days

Total

90

Last Release

75d ago

Major Versions

7.33.0 → 8.0.02024-03-18

8.22.0 → 9.0.02025-03-04

PHP version history (4 changes)7.4.0PHP ^8.1

7.21.0PHP ^8.1.22

8.0.0PHP ^8.2

9.0.0PHP ^8.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1523223?v=4)[Alin Eugen Deac](/maintainers/aedart)[@aedart](https://github.com/aedart)

---

Top Contributors

[![aedart](https://avatars.githubusercontent.com/u/1523223?v=4)](https://github.com/aedart "aedart (187 commits)")

---

Tags

clamavantivirusAthenaeum

### Embed Badge

![Health badge](/badges/aedart-athenaeum-antivirus/health.svg)

```
[![Health](https://phpackages.com/badges/aedart-athenaeum-antivirus/health.svg)](https://phpackages.com/packages/aedart-athenaeum-antivirus)
```

###  Alternatives

[phpmussel/phpmussel

PHP-based anti-virus anti-trojan anti-malware solution.

431228.1k1](/packages/phpmussel-phpmussel)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
