- Nuevo modulo de historial de cambios (ServicioHistorial) - Observer para tracking automatico de cambios en servicios - Correccion de variables auxiliar en ServiciosController - Actualizacion de configuraciones y migraciones - Endpoint para consultar historial de cambios Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
64 lines
1.7 KiB
JSON
Executable File
64 lines
1.7 KiB
JSON
Executable File
{
|
|
"name": "laravel/laravel",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": ["framework", "laravel"],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=5.6.4",
|
|
"barryvdh/laravel-cors": "^0.11.0",
|
|
"barryvdh/laravel-dompdf": "^0.8.0",
|
|
"cartalyst/sentinel": "2.0.*",
|
|
"doctrine/dbal": "^2.8",
|
|
"guzzlehttp/guzzle": "^6.3",
|
|
"laravel/framework": "5.4.*",
|
|
"laravel/tinker": "~1.0",
|
|
"maatwebsite/excel": "~2.1.0",
|
|
"setasign/fpdf": "^1.8",
|
|
"setasign/fpdi": "^2.3",
|
|
"tymon/jwt-auth": "^0.5.12"
|
|
},
|
|
"require-dev": {
|
|
"fzaninotto/faker": "~1.4",
|
|
"mockery/mockery": "0.9.*",
|
|
"phpunit/phpunit": "~5.7"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-root-package-install": [
|
|
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"php artisan key:generate"
|
|
],
|
|
"post-install-cmd": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postInstall",
|
|
"php artisan optimize"
|
|
],
|
|
"post-update-cmd": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
|
|
"php artisan optimize"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true,
|
|
"allow-plugins": {
|
|
"kylekatarnls/update-helper": true
|
|
}
|
|
}
|
|
}
|