Skip to content

Commit f7f2283

Browse files
committed
🎉 completed base setup
0 parents  commit f7f2283

5 files changed

Lines changed: 873 additions & 0 deletions

File tree

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
open_collective: leaf

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
test
2+
Experimental
3+
vendor
4+
composer.lock

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!-- markdownlint-disable no-inline-html -->
2+
<p align="center">
3+
<br><br>
4+
<img src="https://leafphp.netlify.app/assets/img/leaf3-logo.png" height="100"/>
5+
<h1 align="center">Leaf Db module</h1>
6+
<br><br>
7+
</p>
8+
9+
# Leaf PHP
10+
11+
[![Latest Stable Version](https://poser.pugx.org/leafs/db/v/stable)](https://packagist.org/packages/leafs/db)
12+
[![Total Downloads](https://poser.pugx.org/leafs/db/downloads)](https://packagist.org/packages/leafs/db)
13+
[![License](https://poser.pugx.org/leafs/db/license)](https://packagist.org/packages/leafs/db)
14+
15+
Leaf PHP db feature packaged as a serve-yourself module.
16+
17+
## Installation
18+
19+
You can easily install Leaf using [Composer](https://getcomposer.org/).
20+
21+
```bash
22+
composer require leafs/db
23+
```
24+
25+
## View Leaf's docs [here](https://leafphp.netlify.app/#/)
26+
27+
Built with ❤ by [**Mychi Darko**](https://mychi.netlify.app)

composer.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "leafs/db",
3+
"description": "Leaf PHP db module.",
4+
"keywords": [
5+
"database",
6+
"orm",
7+
"leaf",
8+
"php",
9+
"framework"
10+
],
11+
"homepage": "https://leafphp.netlify.app/#/",
12+
"type": "library",
13+
"license": "MIT",
14+
"authors": [
15+
{
16+
"name": "Michael Darko",
17+
"email": "mickdd22@gmail.com",
18+
"homepage": "https://mychi.netlify.app",
19+
"role": "Developer"
20+
}
21+
],
22+
"autoload": {
23+
"psr-4": {
24+
"Leaf\\": "src"
25+
}
26+
},
27+
"minimum-stability": "stable"
28+
}

0 commit comments

Comments
 (0)