drago-ex/parameters

A simple Nette extension for accessing common directory paths (appDir, wwwDir, tempDir) in your application via dependency injection.

v1.0.6 2025-01-24 11:47 UTC

This package is auto-updated.

Last update: 2025-03-24 12:09:23 UTC


README

A lightweight extension for managing application directory paths (such as application, public, and temporary directories) within a Nette-based project. Provides a simple way to access these paths via dependency injection.

License: MIT PHP version Tests Coding Style CodeFactor Coverage Status

Technology

  • PHP 8.3 or higher
  • composer

Installation

composer require drago-ex/parameters

Extension registration

To enable the Parameters extension in your Nette project, add the following configuration to your neon file. This registers the ParametersExtension and injects paths to the application, public, and temporary directories.

extensions:
	- Drago\Parameters\DI\ParametersExtension(appDir: %appDir%, wwwDir: %wwwDir%, tempDir: %tempDir%)

This will automatically inject the directory paths as services into your project.

Accessing Directories in Your Application

Once registered, you can access the directory paths throughout your application using the following properties:

Application Directory

To get the path to your application's directory (usually the root directory of your app), use:

$this->appDir;

Public Directory

To get the path to your public directory (e.g., the www or public directory):

$this->wwwDir;

Temporary Directory

To get the path to the temporary directory (where cache or logs might be stored):

$this->tempDir;