drago-ex / parameters
A simple Nette extension for accessing common directory paths (appDir, wwwDir, tempDir) in your application via dependency injection.
Installs: 1 135
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=8.3 <9
- nette/di: ^3.1
- nette/utils: ^4.0
Requires (Dev)
- nette/bootstrap: ^3.2
- nette/tester: ^2.5
- phpstan/phpstan-nette: ^1.2.9
- tracy/tracy: ^2.10
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.
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;