Download the PHP package nuewire/users without Composer
On this page you can find all versions of the php package nuewire/users. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download nuewire/users
More information about nuewire/users
Files in nuewire/users
Informations about the package users
Nuewire Users
Livewire user management with avatars and detailed authentication activity.
Install
Add the trait:
Prepare the database and first administrator:
The migration adds is_admin, avatar_disk, and avatar_path. Its rollback is intentionally non-destructive.
Component
With nuewire/platform 2, the page is registered under Settings → User Management → Users at /admin/settings/users.
Access modes
Without nuewire/acl, access uses is_admin.
With nuewire/acl, the same page automatically switches to roles, direct permissions, and effective permissions. The route and component stay the same.
Authentication activity
The detail page includes successful and failed attempts, timestamps, IP, user agent, location values, device fingerprint, device name, trusted state, suspicious activity, sessions, statistics, CSV export, device management, and session revocation. Session actions mark authentication-log records as ended; they do not delete host Laravel sessions.
Authentication logging is powered by rappasoft/laravel-authentication-log.
New-device notifications are enabled by Rappasoft by default. Set NEW_DEVICE_NOTIFICATION=false when they are not needed. Schedule authentication-log:purge to enforce the configured retention period.
Optional location support:
Avatar storage
When nuewire/filesystem is installed, avatars use the active nuewire disk. Otherwise they use public. The original disk and path are stored per user.
Configuration
Complete setup and permission documentation is available in the suite file docs/USERS_AND_ACL.md.
Privacy
Authentication records can include IP addresses, device identifiers, user agents, and location data. Limit access with ACL permissions and configure retention in config/authentication-log.php.
Random user IDs
NuewireUser includes Nuewire\Support\Concerns\HasRandomIntegerId. New users receive a unique integer ID between 100000000 and 999999999. Existing IDs are not changed.
For a new users table, use a non-incrementing primary key:
Do not run an automatic primary-key conversion on an existing production table. Foreign keys and authentication logs must be reviewed first.
All versions of users 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/filesystem Version ^11.0|^12.0|^13.0
illuminate/hashing Version ^11.0|^12.0|^13.0
illuminate/http Version ^11.0|^12.0|^13.0
illuminate/notifications Version ^11.0|^12.0|^13.0
illuminate/pagination Version ^11.0|^12.0|^13.0
illuminate/support Version ^11.0|^12.0|^13.0
illuminate/translation Version ^11.0|^12.0|^13.0
illuminate/validation Version ^11.0|^12.0|^13.0
illuminate/view Version ^11.0|^12.0|^13.0
livewire/livewire Version ^3.6|^4.0.3
nuewire/support Version ^1.0
php Version ^8.2
psr/log Version ^1.1|^2.0|^3.0
rappasoft/laravel-authentication-log Version ^6.1