diff --git a/.env.example b/.env.example index e77fb5f11..c523ef0c0 100644 --- a/.env.example +++ b/.env.example @@ -174,3 +174,9 @@ REPORT_TIME_LIMIT=12000 REQUIRE_SAML=false API_THROTTLE_PER_MINUTE=120 CSV_ESCAPE_FORMULAS=true + +# -------------------------------------------- +# OPTIONAL: SCIM +# -------------------------------------------- +SCIM_TRACE=false +SCIM_STANDARDS_COMPLIANCE=false \ No newline at end of file diff --git a/composer.lock b/composer.lock index 9de93e404..365189a04 100644 --- a/composer.lock +++ b/composer.lock @@ -78,12 +78,12 @@ "source": { "type": "git", "url": "https://github.com/grokability/laravel-scim-server.git", - "reference": "9e7a8fd51a7380bc18ca1f01256574d75a2c6b49" + "reference": "8eba81d36a32077ab45ef60290cad817d07b6224" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grokability/laravel-scim-server/zipball/9e7a8fd51a7380bc18ca1f01256574d75a2c6b49", - "reference": "9e7a8fd51a7380bc18ca1f01256574d75a2c6b49", + "url": "https://api.github.com/repos/grokability/laravel-scim-server/zipball/8eba81d36a32077ab45ef60290cad817d07b6224", + "reference": "8eba81d36a32077ab45ef60290cad817d07b6224", "shasum": "" }, "require": { @@ -133,7 +133,7 @@ "support": { "source": "https://github.com/grokability/laravel-scim-server/tree/master" }, - "time": "2022-10-06T00:42:37+00:00" + "time": "2022-11-09T17:01:45+00:00" }, { "name": "asm89/stack-cors", diff --git a/config/scim.php b/config/scim.php index 60f196f4e..246538d7f 100644 --- a/config/scim.php +++ b/config/scim.php @@ -1,6 +1,8 @@ env("SCIM_TRACE",false), + // below, if we ever get 'sure' that we can change this default to 'true' we should + "standards_compliance" => env('SCIM_STANDARDS_COMPLIANCE', false), "publish_routes" => false, - "trace" => env("SCIM_TRACE",false) ];