mirror of
https://github.com/filamentphp/filament.git
synced 2026-08-31 01:14:50 +08:00
c772c5819d
* fix: Search and sort on same relationship table
* Update InteractsWithTableQuery.php
* add test
* Update ColumnTest.php
* Update Group.php
* grouping tests
* clean up
* fix column qualification
* dont use joins for ordering anything
* test
* fix migrations order
* phpstan and summary issues
* update tests
* fix
* fix tests
* Update GroupingTest.php
* Revert "fix"
This reverts commit 160c3e0d18.
* Update TestsSummaries.php
* fix concurrency
* Update TestsSummaries.php
* Update 0009_modify_users_table.php
* BelongsToThrough support
* nested belongstothrough
* Update ColumnTest.php
* fix snapshots
* fix sorting based on sql
22 lines
705 B
Bash
22 lines
705 B
Bash
# Testing Environment Configuration
|
|
# Copy this file to .env.testing and adjust values for your local setup
|
|
#
|
|
# USAGE:
|
|
# These values are automatically loaded by PHPUnit's bootstrap file.
|
|
# Use database-specific variables to configure ports and credentials for each database.
|
|
|
|
# Default Database Configuration
|
|
DB_HOST=127.0.0.1
|
|
# DB_DATABASE is intentionally not set here - let TestCase.php defaults handle it
|
|
# (SQLite needs ":memory:", MySQL/Postgres need "testing")
|
|
|
|
# PostgreSQL-specific configuration (for non-standard ports)
|
|
# PGSQL_PORT=5432
|
|
# PGSQL_USERNAME=postgres
|
|
# PGSQL_PASSWORD=
|
|
|
|
# MySQL-specific configuration (uncomment if needed)
|
|
# MYSQL_PORT=3306
|
|
# MYSQL_USERNAME=root
|
|
# MYSQL_PASSWORD=
|