Skip to content

Commit

Permalink
🎉 completed base setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mychidarko committed Sep 19, 2021
0 parents commit f7f2283
Show file tree
Hide file tree
Showing 5 changed files with 873 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
@@ -0,0 +1,3 @@
# These are supported funding model platforms

open_collective: leaf
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
test
Experimental
vendor
composer.lock
27 changes: 27 additions & 0 deletions README.md
@@ -0,0 +1,27 @@
<!-- markdownlint-disable no-inline-html -->
<p align="center">
<br><br>
<img src="https://leafphp.netlify.app/assets/img/leaf3-logo.png" height="100"/>
<h1 align="center">Leaf Db module</h1>
<br><br>
</p>

# Leaf PHP

[![Latest Stable Version](https://poser.pugx.org/leafs/db/v/stable)](https://packagist.org/packages/leafs/db)
[![Total Downloads](https://poser.pugx.org/leafs/db/downloads)](https://packagist.org/packages/leafs/db)
[![License](https://poser.pugx.org/leafs/db/license)](https://packagist.org/packages/leafs/db)

Leaf PHP db feature packaged as a serve-yourself module.

## Installation

You can easily install Leaf using [Composer](https://getcomposer.org/).

```bash
composer require leafs/db
```

## View Leaf's docs [here](https://leafphp.netlify.app/#/)

Built with ❤ by [**Mychi Darko**](https://mychi.netlify.app)
28 changes: 28 additions & 0 deletions composer.json
@@ -0,0 +1,28 @@
{
"name": "leafs/db",
"description": "Leaf PHP db module.",
"keywords": [
"database",
"orm",
"leaf",
"php",
"framework"
],
"homepage": "https://leafphp.netlify.app/#/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "mickdd22@gmail.com",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Leaf\\": "src"
}
},
"minimum-stability": "stable"
}

0 comments on commit f7f2283

Please sign in to comment.