Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drago-ex/parameters
:open_file_folder: Access to parameters in the application. (@nette)
https://github.com/drago-ex/parameters
nette parameters
Last synced: 22 days ago
JSON representation
:open_file_folder: Access to parameters in the application. (@nette)
- Host: GitHub
- URL: https://github.com/drago-ex/parameters
- Owner: drago-ex
- License: mit
- Created: 2015-10-16T05:54:48.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-01-12T06:47:50.000Z (10 months ago)
- Last Synced: 2024-10-01T14:19:02.227Z (about 1 month ago)
- Topics: nette, parameters
- Language: PHP
- Homepage:
- Size: 140 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
## Drago Parameters
Access to parameters in the application.[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://raw.githubusercontent.com/drago-ex/parameters/master/license.md)
[![PHP version](https://badge.fury.io/ph/drago-ex%2Fparameters.svg)](https://badge.fury.io/ph/drago-ex%2Fparameters)
[![Tests](https://github.com/drago-ex/parameters/actions/workflows/tests.yml/badge.svg)](https://github.com/drago-ex/parameters/actions/workflows/tests.yml)
[![Coding Style](https://github.com/drago-ex/parameters/actions/workflows/coding-style.yml/badge.svg)](https://github.com/drago-ex/parameters/actions/workflows/coding-style.yml)
[![CodeFactor](https://www.codefactor.io/repository/github/drago-ex/parameters/badge)](https://www.codefactor.io/repository/github/drago-ex/parameters)
[![Coverage Status](https://coveralls.io/repos/github/drago-ex/parameters/badge.svg?branch=master)](https://coveralls.io/github/drago-ex/parameters?branch=master)## Technology
- PHP 8.1 or higher
- composer## Installation
```
composer require drago-ex/parameters
```## Extension registration
```neon
extensions:
- Drago\Parameters\DI\ParametersExtension(appDir: %appDir%, wwwDir: %wwwDir%, tempDir: %tempDir%)
```## Path to application directory
```php
$this->appDir;
```## Path to public directory
```php
$this->wwwDir;
```## Path to temporary directory
```php
$this->tempDir;
```