Skip to content

Commit 2cc8376

Browse files
committed
docs: update README.md with additional badges and formatting improvements
Signed-off-by: Felipe Sayão Lobato Abreu <github@mentordosnerds.com>
1 parent 22ba414 commit 2cc8376

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
**FastForward Config** is a flexible and modern PHP configuration library built for performance, extendability, and lazy-loading behavior. It supports dot-notation keys, recursive directory loading, Laminas-compliant configuration providers, and optional PSR-16 caching.
44

55
[![PHP Version](https://img.shields.io/badge/php-^8.3-777BB4?logo=php&logoColor=white)](https://www.php.net/releases/)
6+
[![Composer Package](https://img.shields.io/badge/composer-fast--forward%2Fconfig-F28D1A.svg?logo=composer&logoColor=white)](https://packagist.org/packages/fast-forward/config)
67
[![Tests](https://img.shields.io/github/actions/workflow/status/php-fast-forward/config/tests.yml?logo=githubactions&logoColor=white&label=tests&color=22C55E)](https://github.com/php-fast-forward/config/actions/workflows/tests.yml)
78
[![Coverage](https://img.shields.io/badge/coverage-phpunit-4ADE80?logo=php&logoColor=white)](https://php-fast-forward.github.io/config/coverage/index.html)
89
[![Docs](https://img.shields.io/github/deployments/php-fast-forward/config/github-pages?logo=readthedocs&logoColor=white&label=docs&labelColor=1E293B&color=38BDF8&style=flat)](https://php-fast-forward.github.io/config/index.html)
@@ -33,7 +34,7 @@ composer require fast-forward/config
3334

3435
## 🚀 Quick Start
3536

36-
### Load configuration from multiple sources:
37+
### Load configuration from multiple sources
3738

3839
```php
3940
use function FastForward\Config\config;
@@ -49,7 +50,7 @@ echo $config->get('app.env'); // "production"
4950

5051
---
5152

52-
### Cache configuration using PSR-16:
53+
### Cache configuration using PSR-16
5354

5455
```php
5556
use function FastForward\Config\configCache;
@@ -62,7 +63,7 @@ echo $config->get('foo'); // "bar"
6263

6364
---
6465

65-
### Load from a recursive directory:
66+
### Load from a recursive directory
6667

6768
```php
6869
use function FastForward\Config\configDir;
@@ -72,7 +73,7 @@ $config = configDir(__DIR__ . '/config', recursive: true);
7273

7374
---
7475

75-
### Use Laminas-style providers:
76+
### Use Laminas-style providers
7677

7778
```php
7879
use function FastForward\Config\configProvider;
@@ -100,7 +101,7 @@ print_r($config->toArray());
100101

101102
## 📁 Directory Structure Example
102103

103-
```
104+
```plain
104105
config/
105106
├── app.php
106107
├── db.php

0 commit comments

Comments
 (0)