2026-06-23 09:53:19 +00:00
|
|
|
{
|
|
|
|
|
"name": "laravel/laravel",
|
|
|
|
|
"type": "project",
|
|
|
|
|
"description": "The skeleton application for the Laravel framework.",
|
|
|
|
|
"keywords": ["laravel", "framework"],
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"require": {
|
|
|
|
|
"php": "^8.1",
|
|
|
|
|
"guzzlehttp/guzzle": "^7.2",
|
|
|
|
|
"laravel/framework": "^10.10",
|
|
|
|
|
"laravel/sanctum": "^3.3",
|
2026-07-18 09:49:43 +00:00
|
|
|
"laravel/tinker": "^2.8",
|
|
|
|
|
"league/csv": "^9.28"
|
2026-06-23 09:53:19 +00:00
|
|
|
},
|
|
|
|
|
"require-dev": {
|
|
|
|
|
"fakerphp/faker": "^1.9.1",
|
|
|
|
|
"larastan/larastan": "^2.0",
|
|
|
|
|
"laravel/pint": "^1.0",
|
|
|
|
|
"laravel/sail": "^1.18",
|
|
|
|
|
"mockery/mockery": "^1.4.4",
|
|
|
|
|
"nunomaduro/collision": "^7.0",
|
|
|
|
|
"pestphp/pest": "^2.0",
|
|
|
|
|
"pestphp/pest-plugin-laravel": "^2.0",
|
|
|
|
|
"phpmd/phpmd": "^2.15",
|
|
|
|
|
"phpunit/phpunit": "^10.1",
|
|
|
|
|
"spatie/laravel-ignition": "^2.0"
|
|
|
|
|
},
|
|
|
|
|
"autoload": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"App\\": "app/",
|
|
|
|
|
"Database\\Factories\\": "database/factories/",
|
|
|
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"autoload-dev": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"Tests\\": "tests/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"post-autoload-dump": [
|
|
|
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
feat: remove Filament, add user account management
- Remove Filament /admin panel completely (AdminPanelProvider, UserResource, routes)
- Update composer.json to remove filament/filament dependency
- Add User model soft deletes with SoftDeletes trait + migration
- Strengthen UserPolicy::delete to prevent deleting last remaining admin
- Build out User module following pattern: CreateUserAction, UpdateUserAction, GetUsersAction,
UserResource, UserController, Create/UpdateUserRequest, UserData DTO
- Add /api/users routes (index, store, update, destroy), all admin-gated via policy
- Create frontend Settings > Accounts page (settings/accounts.vue) for admin user management
- Add useUsers composable mirroring useClient pattern
- Add "Benutzer" link to settings dropdown in clients/index.vue
- All tests pass; User soft-delete and last-admin protection verified
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-07-13 06:05:40 +00:00
|
|
|
"@php artisan package:discover --ansi"
|
2026-06-23 09:53:19 +00:00
|
|
|
],
|
|
|
|
|
"post-update-cmd": [
|
|
|
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
|
|
|
|
],
|
|
|
|
|
"post-root-package-install": [
|
|
|
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
|
|
|
],
|
|
|
|
|
"post-create-project-cmd": [
|
|
|
|
|
"@php artisan key:generate --ansi"
|
|
|
|
|
],
|
|
|
|
|
"test": [
|
|
|
|
|
"@php artisan test --parallel"
|
|
|
|
|
],
|
|
|
|
|
"static-analysis": [
|
|
|
|
|
"./vendor/bin/pint --test",
|
|
|
|
|
"./vendor/bin/phpstan analyse --memory-limit=256M",
|
|
|
|
|
"./vendor/bin/phpmd app text phpmd.xml"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"extra": {
|
|
|
|
|
"laravel": {
|
|
|
|
|
"dont-discover": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"config": {
|
|
|
|
|
"optimize-autoloader": true,
|
|
|
|
|
"preferred-install": "dist",
|
|
|
|
|
"sort-packages": true,
|
|
|
|
|
"platform": {
|
|
|
|
|
"php": "8.2.0"
|
|
|
|
|
},
|
|
|
|
|
"allow-plugins": {
|
|
|
|
|
"pestphp/pest-plugin": true,
|
|
|
|
|
"php-http/discovery": true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"minimum-stability": "stable",
|
|
|
|
|
"prefer-stable": true
|
|
|
|
|
}
|