From e4b1369da4f6b142943829dc5c047103fc222f93 Mon Sep 17 00:00:00 2001 From: Roy de Jong Date: Fri, 28 Jun 2024 15:26:55 +0200 Subject: [PATCH] readme: add packagist badge --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9987591..8633d1b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Instarecord **✨ A hyper productive ORM for PHP.** +[![Packagist Version](https://img.shields.io/packagist/v/softwarepunt/instarecord?logo=packagist)](https://packagist.org/packages/softwarepunt/instarecord) [![PHPUnit](https://github.com/SoftwarePunt/instarecord/actions/workflows/phpunit.yml/badge.svg)](https://github.com/SoftwarePunt/instarecord/actions/workflows/phpunit.yml) Instarecord makes it super easy and fun to work with MySQL databases in PHP. It's fast and intuitive, and loaded with optional features to make your life easier. @@ -123,4 +124,4 @@ $carsPerYear = Instarecord::query() ->from('cars') ->groupBy('year') ->queryKeyValueArray(); // [2005 => 10, 2006 => 5, ..] -``` \ No newline at end of file +```