newms87 / danx
Danx Auditing, Logging, and Helpers
1.2.57
2025-04-02 16:39 UTC
Requires
- php: ^8.3
- ext-curl: *
- ext-dom: *
- ext-exif: *
- ext-iconv: *
- ext-libxml: *
- ext-zip: *
- aws/aws-sdk-php: ^3.305
- illuminate/bus: ^11.1
- illuminate/console: ^11.1
- illuminate/contracts: ^11.1
- illuminate/database: ^11.1
- illuminate/encryption: ^11.1
- illuminate/queue: ^11.1
- illuminate/routing: ^11.1
- illuminate/support: ^11.1
- intervention/image: ^3.6
- james-heinrich/getid3: ^1.9
- league/html-to-markdown: ^5.1
- monolog/monolog: ^3.5
- nesbot/carbon: ^3.2
- owen-it/laravel-auditing: ^13.6
- symfony/yaml: ^7.0
Requires (Dev)
- beyondcode/tinkerwell: dev-main
- fakerphp/faker: ^1.24
- phpunit/phpunit: ^9.3
- dev-main
- 1.2.57
- 1.2.56
- 1.2.55
- 1.2.54
- 1.2.53
- 1.2.52
- 1.2.51
- 1.2.50
- 1.2.49
- 1.2.48
- 1.2.47
- 1.2.46
- 1.2.45
- 1.2.44
- 1.2.43
- 1.2.42
- 1.2.41
- 1.2.40
- 1.2.39
- 1.2.38
- 1.2.37
- 1.2.36
- 1.2.35
- 1.2.34
- 1.2.33
- 1.2.32
- 1.2.31
- 1.2.30
- 1.2.29
- 1.2.28
- 1.2.27
- 1.2.26
- 1.2.25
- 1.2.24
- 1.2.23
- 1.2.22
- 1.2.21
- 1.2.20
- 1.2.19
- 1.2.18
- 1.2.17
- 1.2.16
- 1.2.15
- 1.2.14
- 1.2.13
- 1.2.12
- 1.2.11
- 1.2.10
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.0
This package is auto-updated.
Last update: 2025-04-04 04:42:53 UTC
README
Installation
composer require danx/laravel
Setup
Publish the configuration file
sail artisan vendor:publish --provider="Newms87\Danx\DanxServiceProvider"
Development
Install Danx UI
Configure CORS
sail artisan config:publish cors
- Configure the
paths
so the desired routes are allowed- NOTE: By default it is open to all requests
Symlink the Danx library
Symlinking the library will allow for realtime development of the danx library package. This is only useful for development. The command will symlink the vendor/newms87/danx package to the danx git repo that should be located in the same directory as the project.
ie:
- parent
- danx
- your-project
- vendor
- newms87
- danx --> ../../../danx
If using docker, the danx library should be mounted to the docker container.
services: laravel.test: volumes: - '../danx:/var/www/danx'
Run the command
sail artisan danx:link
Publish package to composer
To publish packages, simply push a new tagged version to the repository.
make VERSION=1.0.0 publish
Setup
Audit Logging
- Update
config/logging.php
'channels' => [ //... 'auditlog' => [ 'driver' => 'custom', 'via' => Newms87\Danx\Logging\Audit\AuditLogLogger::class, 'level' => env('LOG_LEVEL', 'debug'), ], ],
- Update
.env
- recommended to use
stack
as the main channel, so you can add additional logging channels
- recommended to use
LOG_CHANNEL=stack LOG_STACK={single},{other-log-channels},auditlog