77 lines
2.0 KiB
JSON
77 lines
2.0 KiB
JSON
{
|
|
"name": "owen-it/laravel-auditing",
|
|
"description": "Audit changes of your Eloquent models in Laravel/Lumen",
|
|
"keywords": [
|
|
"accountability",
|
|
"audit",
|
|
"auditing",
|
|
"changes",
|
|
"eloquent",
|
|
"history",
|
|
"log",
|
|
"logging",
|
|
"observer",
|
|
"laravel",
|
|
"lumen",
|
|
"record",
|
|
"revision",
|
|
"tracking"
|
|
],
|
|
"homepage": "http://laravel-auditing.com",
|
|
"type": "package",
|
|
"license": "MIT",
|
|
"support": {
|
|
"issues": "https://github.com/owen-it/laravel-auditing/issues",
|
|
"source": "https://github.com/owen-it/laravel-auditing"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Antério Vieira",
|
|
"email": "anteriovieira@gmail.com"
|
|
},
|
|
{
|
|
"name": "Quetzy Garcia",
|
|
"email": "quetzyg@altek.org"
|
|
},
|
|
{
|
|
"name": "Raphael França",
|
|
"email": "raphaelfrancabsb@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.0.13",
|
|
"illuminate/console": "5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.*",
|
|
"illuminate/database": "5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.*",
|
|
"illuminate/filesystem": "5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^6.0",
|
|
"mockery/mockery": "^1.0",
|
|
"orchestra/testbench": "^3.5",
|
|
"orchestra/database": "^3.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"OwenIt\\Auditing\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"OwenIt\\Auditing\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"suggest": {
|
|
"laravelista/lumen-vendor-publish": "Needed to publish the package configuration in Lumen"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "6.0-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"OwenIt\\Auditing\\AuditingServiceProvider"
|
|
]
|
|
}
|
|
}
|
|
}
|