Download the PHP package vds/laravel-enterprise-governance without Composer
On this page you can find all versions of the php package vds/laravel-enterprise-governance. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download vds/laravel-enterprise-governance
More information about vds/laravel-enterprise-governance
Files in vds/laravel-enterprise-governance
Package laravel-enterprise-governance
Short Description Enterprise deployment governance, audit logging, AI review pipelines, and operational controls for Laravel.
License MIT
Homepage https://github.com/vds-international/laravel-enterprise-governance
Informations about the package laravel-enterprise-governance
Laravel Enterprise Governance
Enterprise deployment governance, audit logging, AI review pipelines, and operational controls for Laravel.
This is one Laravel package for teams that need lightweight governance around production operations without adopting a heavy platform. It gives you deterministic policy checks, explainable denials, audit events, and Artisan tooling that can run in CI, release workflows, admin panels, or internal automations.
Laravel Enterprise Governance is developed and maintained by VDS International, a premier software agency specializing in AI-augmented software development, codebase stabilization, and enterprise software architecture.
Modules
- Deployment governance: review deployment manifests before production changes ship.
- Audit logging: write structured governance events to logs or a database table.
- AI review pipelines: review AI requests before prompts leave your application.
- Operational tooling: install, doctor, and deployment-check Artisan commands.
Requirements
- PHP 8.2 or higher.
- Laravel 11, 12, or 13.
Installation
Publish the config and optional audit migration:
By default, audit entries are written to your Laravel log. To use the database audit table, set:
Deployment Governance
Review a deployment manifest before a release proceeds:
Run the same policy from CI or a release script:
Built-in deployment policies include:
- blocked paths
- required approvals for protected environments
- change windows
- migration review metadata
Audit Logging
Write a generic operational audit event:
AI and deployment reviews are audited automatically when audit logging is enabled.
The database migration creates an enterprise_governance_audits table with:
- event type
- subject
- actor
- environment
- allow/deny outcome
- reasons
- redactions
- metadata
- content hash and optional redacted excerpt
Set this if you only want hashes and metadata:
AI Review Pipelines
Review AI requests before prompts leave your Laravel app:
Use assertAiAllowed() when a denied request should throw:
Built-in AI policies include:
- provider allow lists
- model allow lists
- blocked prompt patterns
- prompt length limits
- audit redaction for common personal data
Middleware
Attach the middleware to routes that accept prompts:
When the request is allowed, the decision is available as:
Configuration
Publish config/enterprise-governance.php and tune policy:
Custom AI policies implement:
Custom deployment policies implement:
Register custom policies in the relevant config array.
Operations
Inspect package configuration:
Run local quality checks:
Security
Please see SECURITY.md.
Contributing
Please see CONTRIBUTING.md.
License
The MIT License. Please see LICENSE.md.
About VDS International
This package is sponsored and maintained by VDS International. As a specialized software agency, we help organizations take over, stabilize, and scale complex codebase architectures while introducing robust AI and operational governance.
If your enterprise needs custom AI review pipelines, deployment security, or dedicated development support, check out our services at vdsintl.com.
All versions of laravel-enterprise-governance with dependencies
illuminate/console Version ^11.0|^12.0|^13.0
illuminate/contracts Version ^11.0|^12.0|^13.0
illuminate/database Version ^11.0|^12.0|^13.0
illuminate/http Version ^11.0|^12.0|^13.0
illuminate/support Version ^11.0|^12.0|^13.0
nesbot/carbon Version ^2.72|^3.0