Skip to content

Commit

Permalink
docs: add badges to readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
nuldark committed Mar 3, 2024
1 parent f2fd655 commit c4e8080
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
## charonlab/charon-container
# charonlab/charon-container

This project is an open-source implementation of the PHP-FIG PSR-11 standard, which
defines a common interface for dependency injection containers.
PSR-11 aims to provide a simple and efficient Inversion of Control (IoC) container for PHP applications.
[![PHP Version Require](https://poser.pugx.org/charonlab/charon-container/require/php)](https://packagist.org/packages/charonlab/charon-container)
[![Latest Stable Version](https://poser.pugx.org/charonlab/charon-container/v/stable)](https://packagist.org/packages/charonlab/charon-container)
[![Continuous Integration](https://github.com/charonlab/charon-container/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/charonlab/charon-container/actions)
[![Total Downloads](https://poser.pugx.org/charonlab/charon-container/downloads)](https://packagist.org/charonlab/charon-container)
[![License](https://poser.pugx.org/charonlab/charon-container/license.svg)](https://packagist.org/packages/charonlab/charon-container)

**charon-container** is an open-source implementation of the PHP-FIG PSR-11 standard, which
defines a common interface for dependency injection containers. Aims to provide a simple and efficient Inversion of Control (IoC) container for PHP applications.

## Features
- **PSR-11 Compliance**: Adheres to the PSR-11 standard, ensuring compatibility with other components and frameworks that rely on this specification.
Expand All @@ -15,7 +20,7 @@ PSR-11 aims to provide a simple and efficient Inversion of Control (IoC) contain
Use the composer to install:

```bash
$ composer require charonlab/charon-container
composer require charonlab/charon-container
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "MIT",
"type": "library",
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": ">=8.1",
"psr/container": "^2.0"
},
"require-dev": {
Expand Down

0 comments on commit c4e8080

Please sign in to comment.