always-open/laravel-model-auditlog

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "always-open/laravel-model-auditlog",
    "description": "Tracks changes made to models and logs them to individual tables. ",
    "keywords": [
        "always-open",
        "auditlog",
        "laravel",
        "logging"
    ],
    "homepage": "https://github.com/always-open/laravel-model-auditlog",
    "license": "MIT",
    "require": {
        "php": "^7.3|^8.0",
        "awobaz/compoships": "^2.0.3",
        "fico7489/laravel-pivot": "^3.0.1",
        "laravel/framework": "^8.0|^9.0|^10.0",
        "always-open/laravel-process-stamps": "^5.0|^6.0|^7.0"
    },
    "require-dev": {
        "doctrine/dbal": "^2.9|^3.0",
        "orchestra/testbench": "^6.0",
        "phpunit/phpunit": "^10.0"
    },
    "autoload": {
        "psr-4": {
            "AlwaysOpen\\AuditLog\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "AlwaysOpen\\AuditLog\\Tests\\": "tests"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit",
        "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "AlwaysOpen\\AuditLog\\AuditLogServiceProvider"
            ]
        }
    }
}