mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
e03ebc3fd0
* Refactored AssetsTransformer Casted all ids to int, escaped all text values, * Added warranty_expires attribute to Asset model $asset->warranty_expires contains a Carbon object with the warranty expiration date. Returns null when either purchase_date or warranty_months are not set. * Ignoring php-cs cache files * Restored asset tests expectations Work in progress - tests still fail * API controller refactoring, fixed HTTP status codes in responses * Restored $request->get - debugging * Added further checks in ApiAssetsCest::updateAssetWithPatch
73 lines
1.8 KiB
Plaintext
73 lines
1.8 KiB
Plaintext
# --------------------------------------------
|
|
# REQUIRED: BASIC APP SETTINGS
|
|
# --------------------------------------------
|
|
APP_ENV=testing
|
|
APP_DEBUG=true
|
|
APP_KEY=base64:glJpcM7BYwWiBggp3SQ/+NlRkqsBQMaGEOjemXqJzOU=
|
|
APP_URL=http://localhost:8000
|
|
APP_TIMEZONE='US/Pacific'
|
|
APP_LOCALE=en
|
|
FILESYSTEM_DISK=local
|
|
|
|
# --------------------------------------------
|
|
# REQUIRED: DATABASE SETTINGS
|
|
# --------------------------------------------
|
|
DB_CONNECTION=sqlite_testing
|
|
DB_HOST=localhost
|
|
DB_DATABASE=testing.sqlite
|
|
DB_USERNAME=null
|
|
DB_PASSWORD=null
|
|
|
|
# --------------------------------------------
|
|
# REQUIRED: OUTGOING MAIL SERVER SETTINGS
|
|
# --------------------------------------------
|
|
MAIL_DRIVER=log
|
|
MAIL_HOST=email-smtp.us-west-2.amazonaws.com
|
|
MAIL_PORT=587
|
|
MAIL_USERNAME=YOURUSERNAME
|
|
MAIL_PASSWORD=YOURPASSWORD
|
|
MAIL_ENCRYPTION=null
|
|
MAIL_FROM_ADDR=you@example.com
|
|
MAIL_FROM_NAME=Snipe-IT
|
|
|
|
# --------------------------------------------
|
|
# REQUIRED: IMAGE LIBRARY
|
|
# This should be gd or imagick
|
|
# --------------------------------------------
|
|
IMAGE_LIB=gd
|
|
|
|
|
|
# --------------------------------------------
|
|
# OPTIONAL: AWS S3 SETTINGS
|
|
# --------------------------------------------
|
|
AWS_SECRET=null
|
|
AWS_KEY=null
|
|
AWS_REGION=null
|
|
AWS_BUCKET=null
|
|
|
|
|
|
# --------------------------------------------
|
|
# OPTIONAL: CACHE SETTINGS
|
|
# --------------------------------------------
|
|
CACHE_DRIVER=file
|
|
SESSION_DRIVER=file
|
|
QUEUE_DRIVER=sync
|
|
|
|
|
|
# --------------------------------------------
|
|
# OPTIONAL: SESSION SETTINGS
|
|
# --------------------------------------------
|
|
SESSION_LIFETIME=12000
|
|
EXPIRE_ON_CLOSE=false
|
|
ENCRYPT=false
|
|
COOKIE_NAME=snipeittest_session
|
|
COOKIE_DOMAIN=null
|
|
SECURE_COOKIES=false
|
|
|
|
|
|
# --------------------------------------------
|
|
# OPTIONAL: APP LOG FORMAT
|
|
# --------------------------------------------
|
|
APP_LOG=single
|
|
APP_LOG_LEVEL=debug
|