diff --git a/README.rst b/README.rst index 2bcc5be6..562d3ec1 100644 --- a/README.rst +++ b/README.rst @@ -59,7 +59,7 @@ Key features of the ``Dependency Injector``: - **Overriding**. Can override any provider by another provider on the fly. This helps in testing and configuring dev/stage environment to replace API clients with stubs etc. See `Provider overriding `_. -- **Configuration**. Reads configuration from ``yaml`` & ``ini`` files, ``pydantic`` settings, +- **Configuration**. Reads configuration from ``yaml``, ``ini``, and ``json`` files, ``pydantic`` settings, environment variables, and dictionaries. See `Configuration provider `_. - **Resources**. Helps with initialization and configuring of logging, event loop, thread diff --git a/docs/index.rst b/docs/index.rst index 70af0b6c..290a0f1f 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -70,7 +70,7 @@ Key features of the ``Dependency Injector``: - **Overriding**. Can override any provider by another provider on the fly. This helps in testing and configuring dev/stage environment to replace API clients with stubs etc. See :ref:`provider-overriding`. -- **Configuration**. Reads configuration from ``yaml`` & ``ini`` files, ``pydantic`` settings, +- **Configuration**. Reads configuration from ``yaml``, ``ini``, and ``json`` files, ``pydantic`` settings, environment variables, and dictionaries. See :ref:`configuration-provider`. - **Resources**. Helps with initialization and configuring of logging, event loop, thread or process pool, etc. Can be used for per-function execution scope in tandem with wiring. diff --git a/docs/introduction/key_features.rst b/docs/introduction/key_features.rst index 8ab58582..0870ac11 100644 --- a/docs/introduction/key_features.rst +++ b/docs/introduction/key_features.rst @@ -16,7 +16,7 @@ Key features of the ``Dependency Injector``: - **Overriding**. Can override any provider by another provider on the fly. This helps in testing and configuring dev/stage environment to replace API clients with stubs etc. See :ref:`provider-overriding`. -- **Configuration**. Reads configuration from ``yaml`` & ``ini`` files, ``pydantic`` settings, +- **Configuration**. Reads configuration from ``yaml``, ``ini``, and ``json`` files, ``pydantic`` settings, environment variables, and dictionaries. See :ref:`configuration-provider`. - **Resources**. Helps with initialization and configuring of logging, event loop, thread or process pool, etc. Can be used for per-function execution scope in tandem with wiring.